如何在 Angular 2 中为分类图表 (Kendo-图表) 设置 Y 轴标签的格式
how to format label of Y-axis for categorical charts(Kendo-Chart) in Angular 2
我正在使用 Kendo-chart 在条形图、折线图和饼图中显示数据。
但尝试了几个小时后,我无法弄清楚如何为分类图表设置 y 轴标签的格式。
我尝试使用并尝试将格式设置为:<kendo-chart-y-axis-item type="numeric" [labels]='{format:"{0:N2}"}'>
但它不会以任何方式影响 y 轴标签。(我假设我们不能将散点图标签用于分类图表,对吧?)
请帮我设置y轴标签所需的格式。
是我的代码:
<kendo-chart-category-axis-item [categories]="chart.Data.labels"
[labels]="{ rotation: 'auto' }"
[title]="chart.Options.XTitle">
</kendo-chart-category-axis-item>
<kendo-chart-value-axis-item [title]="chart.Options.YTitle">
</kendo-chart-value-axis-item>
<span *ngFor="let dataset of chart.Data.datasets">
<kendo-chart-series-item [name]="dataset.label" [data]="dataset.data"
[type]="dataset.type">
<kendo-chart-series-item-labels visible="true" [content]="setLabelFormat">
</kendo-chart-series-item-labels>
</kendo-chart-series-item>
</span>
提前致谢....
这应该有效。
<kendo-chart-value-axis>
<kendo-chart-value-axis-item >
<kendo-chart-value-axis-item-labels [content]="functionReturningString">
</kendo-chart-value-axis-item-labels>
</kendo-chart-value-axis-item>
</kendo-chart-value-axis>
我正在使用 Kendo-chart 在条形图、折线图和饼图中显示数据。
但尝试了几个小时后,我无法弄清楚如何为分类图表设置 y 轴标签的格式。
我尝试使用并尝试将格式设置为:<kendo-chart-y-axis-item type="numeric" [labels]='{format:"{0:N2}"}'>
但它不会以任何方式影响 y 轴标签。(我假设我们不能将散点图标签用于分类图表,对吧?)
请帮我设置y轴标签所需的格式。
是我的代码:
<kendo-chart-category-axis-item [categories]="chart.Data.labels"
[labels]="{ rotation: 'auto' }"
[title]="chart.Options.XTitle">
</kendo-chart-category-axis-item>
<kendo-chart-value-axis-item [title]="chart.Options.YTitle">
</kendo-chart-value-axis-item>
<span *ngFor="let dataset of chart.Data.datasets">
<kendo-chart-series-item [name]="dataset.label" [data]="dataset.data"
[type]="dataset.type">
<kendo-chart-series-item-labels visible="true" [content]="setLabelFormat">
</kendo-chart-series-item-labels>
</kendo-chart-series-item>
</span>
提前致谢....
这应该有效。
<kendo-chart-value-axis>
<kendo-chart-value-axis-item >
<kendo-chart-value-axis-item-labels [content]="functionReturningString">
</kendo-chart-value-axis-item-labels>
</kendo-chart-value-axis-item>
</kendo-chart-value-axis>