我想使组合图中的vaxis基线更粗/更粗。
我可以使用下面的代码更改颜色
vAxis: {
baselineColor: '#FFA500',
},
有没有办法改变宽度?
答案 0 :(得分:0)
没有用于更改基线厚度的标准选项,
但可以在图表的'ready'
事件中进行更改。
因为要更改颜色,
该颜色可用于查找基线<rect>
元素。
但需要确保要查找的颜色全部为小写字母。
(图表将所有颜色选项更改为小写)
要更改厚度,请添加'stroke'
和'stroke-width'
的属性
baseline.setAttribute('stroke', options.vAxis.baselineColor)
baseline.setAttribute('stroke-width', '10')
请参阅以下工作片段...
google.charts.load('current', {
packages: ['corechart']
}).then(function () {
var data = new google.visualization.DataTable();
data.addColumn('number', 'X');
data.addColumn('number', 'Y');
data.addRows([
[0, 0], [1, 10], [2, 23], [3, 17], [4, 18], [5, 9],
[6, 11], [7, 27], [8, 33], [9, 40], [10, 32], [11, 35],
[12, 30], [13, 40], [14, 42], [15, 47], [16, 44], [17, 48],
[18, 52], [19, 54], [20, 42], [21, 55], [22, 56], [23, 57],
[24, 60], [25, 50], [26, 52], [27, 51], [28, 49], [29, 53],
[30, 55], [31, 60], [32, 61], [33, 59], [34, 62], [35, 65],
[36, 62], [37, 58], [38, 55], [39, 61], [40, 64], [41, 65],
[42, 63], [43, 66], [44, 67], [45, 69], [46, 69], [47, 70],
[48, 72], [49, 68], [50, 66], [51, 65], [52, 67], [53, 70],
[54, 71], [55, 72], [56, 73], [57, 75], [58, 70], [59, 68],
[60, 64], [61, 60], [62, 65], [63, 67], [64, 68], [65, 69],
[66, 70], [67, 72], [68, 75], [69, 80]
]);
var options = {
vAxis: {
baselineColor: '#ffa500',
}
};
var container = document.getElementById('chart_div');
var chart = new google.visualization.LineChart(container);
google.visualization.events.addListener(chart, 'ready', function () {
Array.prototype.forEach.call(container.getElementsByTagName('rect'), function(baseline) {
if (baseline.getAttribute('fill') === options.vAxis.baselineColor) {
baseline.setAttribute('stroke', options.vAxis.baselineColor)
baseline.setAttribute('stroke-width', '10')
}
});
});
chart.draw(data, options);
});
<script src="https://www.gstatic.com/charts/loader.js"></script>
<div id="chart_div"></div>