It may be something I'm missing but I've built a multi-series chart with line and column data. Since it is possible for the values on the bar to be negative, the issue I'm seeing is the category label is repeated, one for each series. Since I am also using zoom, if I zoom in and then back out, the duplicated label is now gone. I should also note that if I remove the label position, currently set as start, it will render only one but then having negative values makes that look bad.
What am I missing to stop the axis duplication?
Attached is the initial render of the chart as coded below.
<kendo-chart name="chart" >
<chart-legend visible="true" position="Kendo.Mvc.UI.ChartLegendPosition.Bottom"></chart-legend>
<series>
<series-item type="Kendo.Mvc.UI.ChartSeriesType.Column" name="Amount" field="Amount" category-field="Period" color="#003399">
<labels visible="true" format="{0:c2}"></labels>
<tooltip visible="true" template="Date: #= dataItem.Period#<br />Amt: #= kendo.format('{0:c2}', dataItem.Amount) #"></tooltip>
</series-item>
<series-item type="Kendo.Mvc.UI.ChartSeriesType.Line" name="Total" field="RunningTotal" category-field="Period" color="#FF9900">
<labels visible="false" format="{0:c2}"></labels>
<tooltip visible="true" template="Date: #= dataItem.Period#<br />Total: #= kendo.format('{0:c2}', dataItem.RunningTotal) #"></tooltip>
</series-item>
</series>
<datasource type="Kendo.Mvc.UI.DataSourceTagHelperType.Ajax" server-operation="true" page-size="0">
<transport>
<read url="" />
</transport>
<sorts>
<sort field="Period" />
</sorts>
</datasource>
<category-axis>
<category-axis-item>
<labels position="ChartAxisLabelsPosition.Start" step="2">
<chart-category-axis-labels-rotation align="Kendo.Mvc.UI.ChartAxisLabelRotationAlignment.End" angle="315" />
</labels>
<chart-category-axis-item-title text="Date"></chart-category-axis-item-title>
</category-axis-item>
</category-axis>
<value-axis>
<value-axis-item>
<labels format="c0"></labels>
</value-axis-item>
</value-axis>
<zoomable>
<mousewheel lock="ChartAxisLock.Y" />
</zoomable>
</kendo-chart>