nicolas.leblanc
nicolas.leblanc

Reputation: 630

Highcharts: alone point hard not visible with marked disabled

Highchart with some null points (alone point only visible via tooltip if marker disabled):

enter image description here

enter image description here

Adding marker enabled will fix the issue of invisible point, but it can be "ugly" if there are many points to be displayed:

enter image description here

enter image description here

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

Answers (1)

Vladimir M
Vladimir M

Reputation: 4489

Highcharts are pretty flexible in the way how you configure your representation. you can configure marker per point:

http://jsfiddle.net/dfaqq1v0/

   series: [{
        name: 'Jane',
        data: [ 1, 0, 3, null, 
                {
                  y:2, 
                  marker:{ enabled:true }
                },
               null, 3, 1, 2, 1],
        marker:{
            enabled:false
        }
    }]

Upvotes: 2

Related Questions