petko_stankoski
petko_stankoski

Reputation: 10713

Enlarge points in highcharts

See this fiddle: http://jsfiddle.net/ebuTs/13/

How to make the dots (points) bigger?

Upvotes: 1

Views: 354

Answers (1)

Igor
Igor

Reputation: 33983

You can play around with the marker radius:

var chart = new Highcharts.Chart({
//...
    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],

    marker: {
        radius: 5// Play around with this value as needed.
    }

Upvotes: 4

Related Questions