我想在Google Charts时间轴中左对齐所有行标签。文档说“timeline.rowLabelStyle”只支持字体类型,颜色和大小,我无法使“allowHtml”关键字起作用。
我也试过以下,但没有运气:
.customChartStyle{
text-align:left !important;
}
...
chart.draw(data, {width: 950, height: 600, 'cssClassNames': {'tableCell': 'customChartStyle'}});
如果有人可以告诉我如何根据需要自定义行标签,我会非常感激。
答案 0 :(得分:0)
这在事实之后起作用
$('#myTimeline div div div svg g:first text').attr({'x':5,"text-anchor":"start"})
答案 1 :(得分:0)
是否需要导入一个库以执行下面的脚本?
$('#myTimeline div div div svg g:first text').attr({'x':5,"text-anchor":"start"})
答案 2 :(得分:0)
我知道我迟到了,但我设法将时间轴行标签向左移动,执行以下操作(jQuery 方式):
$('#myTimeline div div div div svg g:first text').attr({'x': 5, 'text-anchor': 'start'});