ECharts 使用总结

Posted youmingkuang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ECharts 使用总结相关的知识,希望对你有一定的参考价值。

1、去掉Echarts 图标上边框和右边框

option = {
      title: {
                   text: ‘未来一周气温变化‘,
                   subtext: ‘纯属虚构‘
              },
       grid: {
                   show: ‘true‘,
                    borderWidth: ‘0‘,
                 },
      tooltip: {
                   trigger: ‘axis‘
                   },

 

2、去掉 去除网格线、网格区域

    xAxis: [
                        {
                            splitLine: {
                                show: false,
                            },//去除网格线
                            splitArea: { show: false },//保留网格区域
                            type: ‘category‘,
                            boundaryGap: false,
                            data: [‘2015‘, ‘2016‘, ‘2016‘]
                        }
                    ],
                    yAxis: [
                        {
                            splitLine: { show: false },//去除网格线
                            splitArea: { show: false },//保留网格区域
                            type: ‘value‘,
                            axisLabel: {
                                formatter: ‘{value} °C‘
                            }
                        }
                    ],

3、折线图折线加粗

        series: [
                        {
                            name: ‘最高气温‘,
                            type: ‘line‘,
                            data: [1110,2563,4568],
                            itemStyle: {
                                normal: {
                                    lineStyle: {
                                        width: 10
                                    }
                                }
                            }

                        },

 

以上是关于ECharts 使用总结的主要内容,如果未能解决你的问题,请参考以下文章

基于echarts在使用过程中的有关javascript的总结(入门级)

项目总结之echarts 使用

python常用代码片段总结

echarts学习总结

BootStrap有用代码片段(持续总结)

echarts使用小总结