我需要删除XYChart上可见数据之间的填充/空格。
我从图表中删除了填充,并试图将其从valueaxis和lineseries中删除,但是没有帮助。
chart.padding(0, 0, 0, 0);
我还注意到,如果我有更多带有值的日期,则左右没有空格。但是,如果数据较少,该如何解决。
答案 0 :(得分:2)
您需要在DateAxis
实例上设置startLocation和endLocation:
var dateAxis = chart.xAxes.push(new am4charts.DateAxis());
// Change this to 0.5
dateAxis.renderer.grid.template.location = 0.5;
// Add the following
dateAxis.startLocation = 0.5;
dateAxis.endLocation = 0.5;
// Change the padding values
chart.padding(0, 30, 0, 30);
请检查有关setting where axis starts and ends here的更多信息。