Andrea Girardi
Andrea Girardi

Reputation: 4427

Highcharts border

Is there a way to add a border to the plot area like the black border in the picture?

enter image description here

-- UPDATED -- I'm getting some white space between plot area and border. Is there a way to remove the white space?

enter image description here

Upvotes: 0

Views: 78

Answers (1)

Nishith Kant Chaturvedi
Nishith Kant Chaturvedi

Reputation: 4769

Update Use plotBorder width for internal border. see the updated fiddle here

use this :

 chart: {
        borderColor: '#EBBA95',// whatever you want
        borderWidth: 3 

    } 

for black border use

borderColor:'#000000'

fiddle with border Here

Upvotes: 1

Related Questions