admin管理员组文章数量:1352018
i try to draw multiple series with specific symbols(Highcharts standard symbols). But the symbols in series and in legend dont match. In series they are displayed correctly, but in legends they are kind of random...
Example: /
$(function () {
var chart = new Highcharts.Chart({
"chart":{
"zoomType":"xy",
"renderTo":"container"
},
"title":{
"text":null
},
"subtitle":{
"text":"text"
},
"xAxis":{
"min": - 14,
"max":25,
"title":{
"text":"text"
},
"tickPositions":[ - 14, - 10, - 5, 0, 5, 10, 15, 20, 25],
"plotLines":[{
"color":"#C0D0E0",
"width":1,
"value": - 14}]
},
"yAxis":{
"title":{
"text":"text"
},
"min":0,
"max":967
},
"plotOptions":{
"series":{
"marker":{
"enabled":true
}
}
},
"tooltip":{
"shared":false,
"useHTML":true,
"formatter":null,
"style":{
"border":"none !important",
"padding":"0px",
"font-size":"1em"
}
},
"series":[{
"type":"line",
"name":"s1",
"zIndex":20,
"data":[
{"x": - 14, "y":560.944, "marker":{"symbol":"circle"}},
{"x":15.333, "y":0, "marker":{"symbol":"circle"}}
]
},{
"type":"line",
"name":"s2",
"zIndex":19,
"data":[
{"x": - 14, "y":5.848, "marker":{"symbol":"circle"}},
{"x":25, "y":5.848, "marker":{"symbol":"circle"}}
]
},{
"type":"scatter",
"name":"s3",
"zIndex":10,
"data":[
{"x":0.8, "y":266.667, "marker":{"symbol":"circle"}},
{"x":2.513, "y":242.857, "marker":{"symbol":"circle"}},
{"x":1.675, "y":253.571, "marker":{"symbol":"circle"}}
]
},{
"type":"scatter",
"name":"s4",
"zIndex":9,
"data":[
{"x":13.263, "y":35.119, "marker":{"symbol":"diamond"}},
{"x":16.989, "y":13.021, "marker":{"symbol":"diamond"}},
{"x":16.2, "y":9.375, "marker":{"symbol":"diamond"}}
]
}, {
"type":"scatter",
"name":"s5",
"zIndex":30,
"data":[
{"x": - 14, "y":650.19492, "marker":{"radius":6, "symbol":"triangle"}}
]
}, {
"type":"scatter",
"name":"s6",
"zIndex":30,
"data":[
{"x":15, "y":5.8, "marker":{"radius":6, "symbol":"triangle-down"}}
]
}
],
"colors":["#2f7ed8", "#2f7ed8", "#b2b2b2", "#c4c4c4", "#f15c80", "#f15c80"]
});
});
I use Highcharts and Highstock on the same page, so i need to use highstock.js. Using highcharts.js dont fix the problem anyway.
Would be amazing if someone could help me with this, but i guess its a bug in Highcharts?
So long, RaTm7
i try to draw multiple series with specific symbols(Highcharts standard symbols). But the symbols in series and in legend dont match. In series they are displayed correctly, but in legends they are kind of random...
Example: http://jsfiddle/ogkh77r7/1/
$(function () {
var chart = new Highcharts.Chart({
"chart":{
"zoomType":"xy",
"renderTo":"container"
},
"title":{
"text":null
},
"subtitle":{
"text":"text"
},
"xAxis":{
"min": - 14,
"max":25,
"title":{
"text":"text"
},
"tickPositions":[ - 14, - 10, - 5, 0, 5, 10, 15, 20, 25],
"plotLines":[{
"color":"#C0D0E0",
"width":1,
"value": - 14}]
},
"yAxis":{
"title":{
"text":"text"
},
"min":0,
"max":967
},
"plotOptions":{
"series":{
"marker":{
"enabled":true
}
}
},
"tooltip":{
"shared":false,
"useHTML":true,
"formatter":null,
"style":{
"border":"none !important",
"padding":"0px",
"font-size":"1em"
}
},
"series":[{
"type":"line",
"name":"s1",
"zIndex":20,
"data":[
{"x": - 14, "y":560.944, "marker":{"symbol":"circle"}},
{"x":15.333, "y":0, "marker":{"symbol":"circle"}}
]
},{
"type":"line",
"name":"s2",
"zIndex":19,
"data":[
{"x": - 14, "y":5.848, "marker":{"symbol":"circle"}},
{"x":25, "y":5.848, "marker":{"symbol":"circle"}}
]
},{
"type":"scatter",
"name":"s3",
"zIndex":10,
"data":[
{"x":0.8, "y":266.667, "marker":{"symbol":"circle"}},
{"x":2.513, "y":242.857, "marker":{"symbol":"circle"}},
{"x":1.675, "y":253.571, "marker":{"symbol":"circle"}}
]
},{
"type":"scatter",
"name":"s4",
"zIndex":9,
"data":[
{"x":13.263, "y":35.119, "marker":{"symbol":"diamond"}},
{"x":16.989, "y":13.021, "marker":{"symbol":"diamond"}},
{"x":16.2, "y":9.375, "marker":{"symbol":"diamond"}}
]
}, {
"type":"scatter",
"name":"s5",
"zIndex":30,
"data":[
{"x": - 14, "y":650.19492, "marker":{"radius":6, "symbol":"triangle"}}
]
}, {
"type":"scatter",
"name":"s6",
"zIndex":30,
"data":[
{"x":15, "y":5.8, "marker":{"radius":6, "symbol":"triangle-down"}}
]
}
],
"colors":["#2f7ed8", "#2f7ed8", "#b2b2b2", "#c4c4c4", "#f15c80", "#f15c80"]
});
});
I use Highcharts and Highstock on the same page, so i need to use highstock.js. Using highcharts.js dont fix the problem anyway.
Would be amazing if someone could help me with this, but i guess its a bug in Highcharts?
So long, RaTm7
Share Improve this question asked Feb 5, 2015 at 9:19 user3875717user3875717 331 silver badge3 bronze badges 01 Answer
Reset to default 10You have to set your marker definitions on the series, not the data.
{
"type":"scatter",
"name":"s4",
"zIndex":9,
"marker": {
"symbol": "diamond"
},
"data":[
{"x":13.263, "y":35.119},
{"x":16.989, "y":13.021},
{"x":16.2, "y":9.375}
]
}
http://jsfiddle/8ma4ts9s/
本文标签: javascriptHow can i force Highcharts to use same symbols in Legend and SeriesStack Overflow
版权声明:本文标题:javascript - How can i force Highcharts to use same symbols in Legend and Series? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743905459a2559438.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论