Version
4.9.0
Steps to reproduce
Examples - Apache ECharts (incubating)
set : areaStyle: { color:'#000'}
option = {
xAxis: {
type: 'category',
boundaryGap: false,
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: 'line',
areaStyle: { color:'#000'}
}]
};
What is expected?
color:'#000'
What is actually happening?
color:'#484848'
What am I missing?