gpt4 book ai didi

javascript - Google Charts - 动态旋转线点

转载 作者:行者123 更新时间:2023-12-03 10:19:32 27 4
gpt4 key购买 nike

可以使用 Google 图表 ( https://developers.google.com/chart/interactive/docs/points#rotations ) 旋转折线图点。还可以自定义各个点 ( https://developers.google.com/chart/interactive/docs/points#individual )。

我想根据传递到表的数据旋转点。以下代码加载自定义点但不旋转三 Angular 形。这可能吗?

google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable
([['X', 'Y', {'type': 'string', 'role': 'style'}],
[1, 3, null],
[2, 2.5, null],
[6, 3, 'point {shape-type: triangle; rotation: 180;}'],
[7, 2.5, null],
[8, 3, null]
]);

var options = {
legend: 'none',
hAxis: { minValue: 0, maxValue: 9 },
curveType: 'function',
pointSize: 7
};

var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, options);
}

在 jsfiddle - https://jsfiddle.net/7bc691kr/

谢谢

最佳答案

在各个点选项中,旋转选项似乎被称为shape-rotation,而不仅仅是rotation

rotation: 180 更改为 shape-rotation: 180 它应该可以工作。

关于javascript - Google Charts - 动态旋转线点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29708914/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com