我按照此处的说明重命名了我的列名:dimple.js How can I change the labels of a chart axis without changing the data?
问题是在重绘时列名称会更改回默认值。
我使用参数noDataChange = true
重新调整页面大小,如下例所示:http://dimplejs.org/advanced_examples_viewer.html?id=advanced_responsive_sizing
有关如何防止将列名恢复为默认值的任何想法?
编辑:
到目前为止,我已尝试在每次调整大小时重新命名轴,但它们似乎会在短时间内(调试期间)发生变化,然后再返回数据中的列名。 导致轴名称改变的原因是什么?
答案 0 :(得分:1)
我对链接问题的回答已经过时了,在最新版本的酒窝中,替代答案现在是首选方法。
在绘图前设置标题:
...
x = chart.addCategoryAxis("x", "My Dimension");
x.title = "My Awesome New Title";
chart.draw();