javascript - Opacity colors in Highcharts (with default color) -


in highcharts there possibility add color series. particular data in series, has color: 'rgba(150,100,50,0.5)'

series: [{          name: 'tokyo',          data: [95.6, 54.4]        }, {          name: 'new york',          data: [106.6, 92.3]        }, {          name: 'london',          data: [59.3, 51.2]        }, {          name: 'berlin',          data: [46.8, 51.1],          color: 'rgba(150,100,50,0.5)'        }] 

however, want tell highcharts set opacity in particular data. want use default color use.

can that?

as can see in demo code in gradient fill can customize colors want use. can put rgba colors here.


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -