作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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
我想让图表填满整个象限,类似于:
这怎么可能?
最佳答案
关于javascript - 无法使极坐标图填充 Anychart 中的整个象限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50810179/
这个问题在这里已经有了答案: How can I vertically center a div element for all browsers using CSS? (48 个答案) How
我是一名优秀的程序员,十分优秀!