amCharts 5:是否可以旋转轴刻度标签?
amCharts 5: Is is possible to rotate axes tick labels?
是否可以在 amCharts 5 中旋转轴刻度标签?例如
我无法在新的 amCharts 5 文档中的任何地方找到这个提及。这是 possible in amCharts 4。
这可以通过在相关轴渲染器的 labels.template
上设置 rotation
属性 来实现,例如:
//...
const xAxisRenderer = am5xy.AxisRendererX.new(root, {});
xAxisRenderer.labels.template.setAll({
rotation: -45,
});
const xAxis = chart.xAxes.push(
am5xy.CategoryAxis.new(root, {
renderer: xAxisRenderer ,
categoryField: 'category-name-here',
})
);
//...
发现于: amCharts 5 demo
是否可以在 amCharts 5 中旋转轴刻度标签?例如
我无法在新的 amCharts 5 文档中的任何地方找到这个提及。这是 possible in amCharts 4。
这可以通过在相关轴渲染器的 labels.template
上设置 rotation
属性 来实现,例如:
//...
const xAxisRenderer = am5xy.AxisRendererX.new(root, {});
xAxisRenderer.labels.template.setAll({
rotation: -45,
});
const xAxis = chart.xAxes.push(
am5xy.CategoryAxis.new(root, {
renderer: xAxisRenderer ,
categoryField: 'category-name-here',
})
);
//...
发现于: amCharts 5 demo