我正在使用AnyChart创建极坐标图
anychart.onDocumentReady(function () {
// create polar chart
var chart = anychart.polar();
var columnSeries = chart.column([
{x: 'A', value: 28.7},
{x: 'B', value: 19},
{x: 'C', value: 17.7},
{x: 'D', value: 34.7}
]);
// set series name
columnSeries.name('Percentage');
// set title settings
chart.title()
.enabled(true)
.text('Test')
.padding({bottom: 20});
// disable y-axis
chart.yAxis(false);
// set value prefix for tooltip
chart.tooltip().valuePrefix('%');
// set x-scale
chart.xScale('ordinal');
// set chart container id
chart.container('container');
// initiate chart drawing
chart.draw();
});
https://playground.anychart.com/gallery/Polar_Charts/Column_Polar_Chart
我想让图填满整个象限,类似于:
这怎么可能?
最佳答案
您需要根据您的专栏sort the points
// enable sorting points by x
chart.sortPointsByX(true);
检查live example
关于javascript - 无法使极坐标图填充Anychart中的整个象限,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50810179/