
Echart
Fade Away
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
echarts 柱状图item颜色自定义
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> #e1{ width: 700px; height: 300px; border:2px solid aqua; ...原创 2019-12-30 09:14:59 · 1202 阅读 · 0 评论 -
Echart雷达图
去除默认的灰白间隔背景 splitArea: { show: false },原创 2019-05-10 13:36:01 · 490 阅读 · 0 评论 -
Echart默认参数
<code class="has-numbering" onclick="mdcp.copyCode(event)">// 默认色板 color: ['#ff7f50','#87cefa','#da70d6','#32cd32','#6495ed', '#ff69b4','#ba55d3','#cd5c5c','#ffa500','#40e0d0', '...原创 2019-05-10 12:46:15 · 423 阅读 · 0 评论 -
Echar 柱形图的颜色默认是自适应的 通过 normal{}可以修改
itemStyle:{ normal:{ color:'green' } // color: 'yellow', // borderColor: '#000', // borderWidth: 0, // borde...原创 2019-05-10 11:09:22 · 1231 阅读 · 0 评论 -
Echart总结【一 坐标轴属性】
以横轴为例 demo xAxis show true false name 坐标轴名字 nameLocation 坐标轴位置 property nameStyle 坐标轴名称样式 nameStyle{ color: ..., 设置x轴的name的样式 fontStyle: 'normal', fontWeight: normal, fontFamily: ...原创 2019-05-10 10:44:36 · 2642 阅读 · 0 评论 -
Echarts series[5]
type: 'bar', id: ..., name: ..., 系列名称 legendHoverLink: true, 是否启用图例 hover 时的联动高亮。 coordinateSystem: 'cartesian2d', xAxisIndex: 0, yAxisIndex: 0, label: {...}, itemStyle: {...}, emphasis: {...}, sta...原创 2019-05-10 10:27:06 · 338 阅读 · 0 评论 -
Echart[ tooltip]
可以设置在全局,即 tooltip 可以设置在坐标系中,即 grid.tooltip、polar.tooltip、single.tooltip 可以设置在系列中,即 series.tooltip 可以设置在系列的每个数据项中,即 series.data.tooltip ...原创 2019-05-10 09:12:12 · 135 阅读 · 0 评论 -
Echart[3 xAxis]
xAxis: { id: ..., show: true, 显示x轴 gridIndex: 0, position: ..., offset: 0, type: 'category', 坐标轴类型。 'value' 数值轴,适用于连续数据。 'category' 类目轴,适用于离散的类目数据,为该类型时必须通过 data 设置类目数据。 'time' 时间轴,适用于连续的时序数据,与数值轴相...原创 2019-05-10 09:09:24 · 651 阅读 · 0 评论 -
Echarts【2 grid】
id: ..., show: false, 是否显示直角坐标系网格。 zlevel: 0, z: 2, left: '10%', grid 组件离容器左侧的距离。 'left', 'center', 'right' + 数值 +百分比 top: 60, 'top', 'middle', 'bottom' + 数值 +百分比 right: '10%', 数值 + 百分比 bottom: 60...原创 2019-05-10 08:51:16 · 416 阅读 · 0 评论 -
Echart属性【1 title】
title title 组件标题 show true/false text 主标题 subtext 副标题 link 超链接 subTextStyle /textStyle 下面为subText属性值 color: '#333', fontStyle: 'normal', fontWeight: normal, fontFamily: 'sans-serif',...原创 2019-05-10 08:44:42 · 334 阅读 · 0 评论