echarts
Version:
A powerful charting and visualization library for browser
36 lines (31 loc) • 893 B
JavaScript
module.exports = require('./MarkerModel').extend({
type: 'markArea',
defaultOption: {
zlevel: 0,
// PENDING
z: 1,
tooltip: {
trigger: 'item'
},
// markArea should fixed on the coordinate system
animation: false,
label: {
normal: {
show: true,
position: 'top'
},
emphasis: {
show: true,
position: 'top'
}
},
itemStyle: {
normal: {
// color and borderColor default to use color from series
// color: 'auto'
// borderColor: 'auto'
borderWidth: 0
}
}
}
});