本文主要是介绍echarts设置柱状图柱状图粗细大小,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
主要属性:
//设置柱状图大小barWidth: 20,
demo:
<!DOCTYPE html>
<html><head><meta charset="utf-8"><title>柱状图大小</title><!-- 引入 echarts.js --><script src="https://cdn.bootcss.com/echarts/4.2.1-rc1/echarts.min.js" type="text/javascript"></script><script src="http://code.jquery.com/jquery-1.8.0.min.js"></script></head><body><!-- 为ECharts准备一个具备大小(宽高)的Dom --><div id="main" style="width: 600px;height:400px;"></div><script type="text/javascript">// 基于准备好的dom,初始化echarts实例var myChart = echarts.init(document.getElementById('main'));// 指定图表的配置项和数据myChart.setOption({title: {text: '柱状图'},tooltip: {},legend: {data: ['销量']},xAxis: {data: ["1", "2", "3", "4", "5", "6", "7", "8", "9"]},yAxis: {},series: [{name: '销量',type: 'bar',//设置柱状图大小barWidth: 20,//设置柱状图渐变颜色itemStyle: {normal: {color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [{offset: 0,color: "#1268f3" // 0% 处的颜色}, {offset: 0.6,color: "#08a4fa" // 60% 处的颜色}, {offset: 1,color: "#01ccfe" // 100% 处的颜色}], false)}},data: ["1", "2", "3", "4", "5", "2", "3", "4", "3"]}]});</script></body></html>
这篇关于echarts设置柱状图柱状图粗细大小的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!