我使用高图饼图创建一个圆环图,但希望传说图标成为圆圈的任何想法???下面是模型和实际的Web版本。感谢...
答案 0 :(得分:5)
我根据饼图准备了解决方案。在数据点上生成图例,自动作为HTML列表。然后所有元素都从系列中获取颜色,并使用CSS3生成圆形对象(border-radius)。因此,您需要添加click事件。
$legend = $('#customLegend');
$.each(chart.series[0].data, function (j, data) {
$legend.append('<div class="item"><div class="symbol" style="background-color:'+data.color+'"></div><div class="serieName" id="">' + data.name + '</div></div>');
});
$('#customLegend .item').click(function(){
var inx = $(this).index(),
point = chart.series[0].data[inx];
if(point.visible)
point.setVisible(false);
else
point.setVisible(true);
});
CSS:
.symbol {
width:20px;
height:20px;
margin-right:20px;
float:left;
-webkit-border-radius: 10px;
border-radius: 10px;
}
.serieName {
float:left;
cursor:pointer;
}
.item {
height:40px;
clear:both;
}
答案 1 :(得分:5)
在最新版本的Highcharts中,您可以在symbolWidth: width
内使用symbolRadius: width/2
和legend: {}
。
请参阅此JSFiddle演示:http://jsfiddle.net/Wzs9L/
答案 2 :(得分:1)
实现此目的的另一种方法是使用CSS覆盖样式。 只需将下面的类添加到样式表中:
.highcharts-legend-item rect {
width: 12px;
height: 12px; /* height = width */
rx: 50%;
ry: 50%;
}
这将覆盖SVG Rectangle元素的默认样式。
答案 3 :(得分:0)
有一个很容易解决的问题。只需在图表选项中设置以下属性:
chartoptions.legend.symbolHeight = 12;
chartoptions.legend.symbolWidth = 12;
chartoptions.legend.symbolRadius = 6;
如需进一步参考,请查看Collator。