0
如何格式化圖表中的類別軸?格式圖表組件中的日期類別軸
我發現this help file,但我不能用我的源代碼連接:
<kendo-chart [categoryAxis]="{ categories: graphsCategories }">
<kendo-chart-legend position="bottom" orientation="horizontal"></kendo-chart-legend>
<kendo-chart-series>
<kendo-chart-series-item *ngFor="let item of graphsSeries" type="line"
[data]="item.timers"
[name]="item.name">
</kendo-chart-series-item>
</kendo-chart-series>
</kendo-chart>
這是行不通的。你確定這應該進入該系列?我有多個系列,但都具有相同的分類軸。那麼不應該有一些全球性的設置? – Makla
是的,我有我的代碼。我使用「dd/MM」格式,但是「EEEE」應該根據日期顯示星期幾 – mast3rd3mon