Reputation: 4427
Is there a way to add a border to the plot area like the black border in the picture?
-- UPDATED -- I'm getting some white space between plot area and border. Is there a way to remove the white space?
Upvotes: 0
Views: 78
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