以下是Amcharts中我的图表的演示。Working Pen
这里我已经包含了
"panels": [{
"titles": [{
"id": "Title-1",
"size": 15,
"text": " Taxi State Analysis"
}],
"categoryAxis": {
"title": "Time spent in Minutes",
},
"stockLegend": {}
}]
图表标题工作正常,但没有出现类别轴标题。我也试过
"categoryAxesSettings": {
"minPeriod": "mm"
"title":"Time in minutes "
}
这也没有用。感谢任何帮助。
答案 0 :(得分:1)
我认为您正在尝试显示值轴标题,因为只有在查看您的代码笔后才有意义。如果我在这里弄错了,请告诉我。
你可以使用以下属性来做到这一点。
"panelsSettings": {
"marginLeft": 50
},
"panels": [{
"valueAxes": [ {
"title":"Time spent in Minutes"
}],
"titles": [{
"id": "Title-1",
"size": 15,
"text": " State Analysis"
}],
"stockLegend": {}
}],