user327999
user327999

Reputation: 453

HighCharts / Highstock How to build 100% stacked area chart

Is it possible to accomplish a 100% stacked area chart in High Charts or High Stock? This chart will need to display data over time and each date must added up to 100%. I have tried building an Highstock area chart but it is really is not what I need.

Upvotes: 0

Views: 583

Answers (1)

user327999
user327999

Reputation: 453

I figured it out you can add the following to the chart's plot options

plotOptions: { area: { stacking: 'percent'} }

Upvotes: 1

Related Questions