目的是在每个条形的X轴上有2行文字。
e.g
JUN
2018
以不同方式设置每一行的样式(例如将年份标签的颜色设置为绿色)。
我们能做到吗? 这就是我以自定义方式填充条形图的方法。
str += '<set label="' + months[i].toUpperCase() + ' ' + currentyear + '" value="' + amount + '" color="08cf77" toolText="' + cur_symbol + amount + '" />\n';
答案 0 :(得分:0)
只需使用
' '
因此该行应更新为;
str += '<set label="' + months[i].toUpperCase() + ' ' + currentyear + '" value="' + amount + '" color="08cf77" toolText="' + cur_symbol + amount + '" />\n';