option = {
xAxis: {
type: 'category',
data: ['A', 'B', 'C', 'D', 'E', 'F', 'G']
},
yAxis: {
type: 'value'
},
series: [{
type: 'bar',
data: [10, 20, 30, 40, 50, 60, 70]
}],
dataZoom: [
{
type: 'slider', // 缩放型数据区域组件
start: 0, // 起始位置(百分比)
end: 50, // 结束位置(百分比)
handleStyle: {
color: '#3398DB', // 手柄颜色
borderColor: '#ccc' // 手柄边框颜色
}
}
]
};
在上述示例中,handleStyle 中的 color 用于设置滑块手柄的颜色,borderColor 用于设置手柄边框的颜色。你可以根据实际需求调整这些配置参数,以满足你的设计要求。
转载请注明出处:http://www.zyzy.cn/article/detail/5290/ECharts