{#list _xAxis.data as xLabel}
{/list} {#list _yAxis.data as yLabel}
{/list}
{#list _xAxis.data as xLabel}
{#if xLabelTemplate}{#inc xLabelTemplate}{#else}{xLabel}{/if}
{/list}
{xAxis.name}
{#list _yAxis.data as yLabel}
{this.format(yLabel)}
{/list}
{yAxis.name}
{#list series as sery} {#if fill}{/if} {/list}
{#list data as item} {#if !item.hidden}
{#list series as sery} {#if item[sery.key] !== undefined}
{this.format(item[sery.key])}
{/if} {/list} {__percent = 100*(_yAxis.max - this._getTopOne(item))/(_yAxis.max - _yAxis.min)}
{#if tooltipTemplate} {#inc tooltipTemplate} {#else} {#list series as sery}
{sery.name || sery.key}: {this.format(item[sery.key])}
{/list} {/if}
{/if} {/list}