发布网友 发布时间:2022-05-01 15:12
共9个回答
热心网友 时间:2022-04-23 16:12
固定设置y轴最大值:max:1000,热心网友 时间:2022-04-23 17:30
/**
* 柱形图
*/
var myChart = echarts.init(document.getElementById('bar')); var option = {// 提示
tooltip: {
show: true
},
xAxis: [
{ type: 'category',
axisLabel: {
formatter: '{value}'
},
data: ["1月", "2月", "3月", "4月", "5月", "6月"]
}
],
yAxis: [
{ type: 'value',
}
],//
数据系列
series: [
{ "type": "bar", "data": [120, 40, 90, 110, 48, 50],
itemStyle: {
normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
offset: 0,
color: '#76ddf3'
}, {
offset: 1,
color: '#2989cc'
}]),
}
}
}
]
}; // 为echarts对象加载数据
myChart.setOption(option);
热心网友 时间:2022-04-23 19:05
代码如下:myChart.on("click",function(param){varhz=param.name;//横坐标的值alert(param);}追问谢谢提供
热心网友 时间:2022-04-23 20:56
echarts Y轴上的数值是根据注入的参数而决定的,如果没有值,就是0,相反参数越大,y轴的数值也越大热心网友 时间:2022-04-23 23:04
yAxis: [{热心网友 时间:2022-04-24 01:29
yAxis : [热心网友 时间:2022-04-24 04:10
xAxis : [热心网友 时间:2022-04-24 07:08
有个属性 offset: 120,设置一下就可以了热心网友 时间:2022-04-24 10:23
yAxis.axisLabel.formatter