ECharts圆弧属性
graphic.elements[i]-arc
设置 ECharts 的圆弧。
graphic.elements[i]-arc.type | string
[ default: arc ]
用 setOption 首次设定图形元素时必须指定。 可取值:
image, text, circle, sector, ring, polygon, polyline, rect, line, bezierCurve, arc, group。
此处我们的取值为“arc”。
graphic.elements[i]-arc.id | string
[ default: undefined ]
id 用于在更新或删除圆弧时指定更新哪个圆弧,如果不需要用可以忽略。
graphic.elements[i]-arc.$action | string
[ default: 'merge' ]
setOption 时指定本次对该圆弧的操作行为。
可取值:
- 'merge':如果已有元素,则新的配置项和已有的设定进行 merge。如果没有则新建。
- 'replace':如果已有元素,删除之,新建元素替代之。
- 'remove':删除元素。
graphic.elements[i]-arc.left | number, string
[ default: undefined ]
描述怎么根据父元素对圆弧进行定位。
『父元素』是指:如果是顶层元素,父元素是 echarts 图表容器。如果是 group 的子元素,父元素就是 group 元素。
值的类型可以是:
- number:表示像素值。
- 百分比值:如 '33%',用父元素的高和此百分比计算出最终值。
- 'center':表示自动居中。
left 和 right 只有一个可以生效。
如果指定 left 或 right,则 shape 里的 x、cx 等定位属性不再生效。
graphic.elements[i]-arc.right | number, string
[ default: undefined ]
描述怎么根据父元素对圆弧进行定位。
『父元素』是指:如果是顶层元素,父元素是 echarts 图表容器。如果是 group 的子元素,父元素就是 group 元素。
值的类型可以是:
- number:表示像素值。
- 百分比值:如 '33%',用父元素的高和此百分比计算出最终值。
- 'center':表示自动居中。
left 和 right 只有一个可以生效。
如果指定 left 或 right,则 shape 里的 x、cx 等定位属性不再生效。
graphic.elements[i]-arc.top | number, string
[ default: undefined ]
描述怎么根据父元素对圆弧进行定位。
『父元素』是指:如果是顶层元素,父元素是 echarts 图表容器。如果是 group 的子元素,父元素就是 group 元素。
值的类型可以是:
- number:表示像素值。
- 百分比值:如 '33%',用父元素的宽和此百分比计算出最终值。
- 'middle':表示自动居中。
top 和 bottom 只有一个可以生效。
如果指定 top 或 bottom,则 shape 里的 y、cy 等定位属性不再生效。
graphic.elements[i]-arc.bottom | number, string
[ default: undefined ]
描述怎么根据父元素对圆弧进行定位。
『父元素』是指:如果是顶层元素,父元素是 echarts 图表容器。如果是 group 的子元素,父元素就是 group 元素。
值的类型可以是:
- number:表示像素值。
- 百分比值:如 '33%',用父元素的宽和此百分比计算出最终值。
- 'middle':表示自动居中。
top 和 bottom 只有一个可以生效。
如果指定 top 或 bottom,则 shape 里的 y、cy 等定位属性不再生效。
graphic.elements[i]-arc.bounding | strin
[ default: 'all' ]
决定圆弧在定位时,对自身的包围盒计算方式。
可取值:
- 'all':(默认) 表示用自身以及子节点整体的经过 transform 后的包围盒进行定位。 这种方式易于使整体都限制在父元素范围中。
- 'raw': 表示仅仅用自身(不包括子节点)的没经过 tranform 的包围盒进行定位。 这种方式易于内容超出父元素范围的定位方式。
graphic.elements[i]-arc.z | number
[ default: 0 ]
圆弧在 z 方向的高度,决定层叠关系。
graphic.elements[i]-arc.zlevel | number
[ default: 0 ]
决定圆弧绘制在哪个 canvas 层中。注意,越多 canvas 层会占用越多资源。
graphic.elements[i]-arc.silent | boolean
[ default: false ]
判断圆弧是否不响应鼠标以及触摸事件。
graphic.elements[i]-arc.invisible | boolean
[ default: false ]
判断圆弧的节点是否可见。
graphic.elements[i]-arc.cursor | string
[ default: 'pointer' ]
鼠标悬浮时在圆弧上时鼠标的样式是什么。同 CSS 的 cursor。
graphic.elements[i]-arc.draggable | boolean
[ default: false ]
判断圆弧是否可以被拖拽。
graphic.elements[i]-arc.progressive | boolean
[ default: false ]
圆弧是否渐进式渲染。当 ECharts 中圆弧过多时才使用。