如何在Highchart散点图中指定每个总体的标记形状? 在我看来,他们是随机选择还是从名单中选出来的?
答案 0 :(得分:4)
默认情况下可以随机选择它们,但要明确设置它们,请尝试以下方法:
series: [{
name: 'Predefined symbol',
data: [316.4, 294.1, 195.6, 154.4],
marker: {
symbol: 'triangle'
}
}],
symbol
属性可以指定图标的形状或链接。还有一些非常酷的其他选项,例如使用以下代码创建自定义形状:
// Define a custom symbol path
Highcharts.SVGRenderer.prototype.symbols.cross = function (x, y, w, h) {
return ['M', x, y, 'L', x + w, y + h, 'M', x + w, y, 'L', x, y + h, 'z'];
};
if (Highcharts.VMLRenderer) {
Highcharts.VMLRenderer.prototype.symbols.cross = Highcharts.SVGRenderer.prototype.symbols.cross;
}
以下是有关此主题的高级图表文档的链接:
http://api.highcharts.com/highcharts#plotOptions.scatter.marker.symbol