Reputation: 630
Highchart with some null points (alone point only visible via tooltip if marker disabled):
Adding marker enabled will fix the issue of invisible point, but it can be "ugly" if there are many points to be displayed:
Anybody has a suggestion about how I could make an alone point more visible, without cramming my graphs with markers? More precisely, I'd like to show marker only on alone points.
Upvotes: 0
Views: 154
Reputation: 4489
Highcharts are pretty flexible in the way how you configure your representation. you can configure marker per point:
series: [{
name: 'Jane',
data: [ 1, 0, 3, null,
{
y:2,
marker:{ enabled:true }
},
null, 3, 1, 2, 1],
marker:{
enabled:false
}
}]
Upvotes: 2