echarts-liquidfill icon indicating copy to clipboard operation
echarts-liquidfill copied to clipboard

Liquid Fill Chart for Apache ECharts

Results 54 echarts-liquidfill issues
Sort by recently updated
recently updated
newest added

``` label: { normal: { position: ['38%', '40%'], formatter: function() { return 'ECharts\nLiquid Fill'; }, fontSize: 40, color: '#D94854' } } ``` 可以让`ECharts`和`Liquid Fill`的字体大小不同吗?

enhancement

import * as echarts from 'echarts/src/echarts'; import 'echarts/src/chart/line'; import 'echarts/src/chart/bar'; import 'echarts/src/chart/pie'; import 'echarts/src/chart/gauge' ```js var option = { series: [{ type: 'liquidFill', data: [0.6] }] }; ```

Hi! I want to use echarts-liquidfill. I have download the project and extract the zip on my windows10 computer. I try to use the example but I will not get...

如题,详情连接,如有解决方案,请回复,谢谢! ```js var option = { series: [{ type: 'liquidFill', radius: '90%', outline: { show: false, }, backgroundStyle: { color: '#01075e' }, label: { show: false, fontFamily: 'yalan', fontSize: 24,...

## 请问有人遇到过这个问题吗? 特定图形初次渲染时,波浪带有明显的轮廓线。将生成的option赋值到echarts官网中又没问题。 ![water-line](https://user-images.githubusercontent.com/39377926/97109952-3d952700-1711-11eb-86a2-7d922b96440e.png) ```js option={ "tooltip": { "trigger": "item", "show": true }, "wtext": { "unit1": { "text": "", "color": "", "fontSize": 28, "fontWeight": false, "fontStyle": false, "textDecoration": false },...

我通过js开发水波球图,在chrome中能正常运行,但IE8下报如下错误: 消息: Component series.liquidFill not exists. Load it first. 行: 22 字符: 35717 代码: 0 URI: http://192.168.101.156:8080/qyws-index/js/echarts.min.js 我用的echarts版本默认是4.1.0 ,其他类型的echarts图能正常显示,就水波球页面出不来。也尝试在官网下载了各种版本的liquidFill 和 对应的echarts js,但是都不行。 部分代码如下: 1)jsp : 占总人口数 % 2) js文件: function...

Title var value = 0.73; var real_z= 237682; var real= 173507; var title= '年度计划规模(公里)'; var data = [value,value,value]; option = { backgroundColor: '#04184A', title: { text: title, textStyle: { fontSize:...

水球插件 用在手机端会出现不断画布闪屏的现象。

```js var option = { series: [{ type: 'liquidFill', data: [0.6], backgroundStyle: { borderWidth: 5, borderColor: '#156ACF', color: function(params){ return '#e9f540' }, opacity:0.6 }, }] }; ``` 我在像上面这样使用函数来为设置颜色时,函数不会执行,导致水球图的背景颜色成了灰色,设置波浪的颜色的时候也是一样,函数没有执行,希望能解答一下,谢谢!

wontfix

```js if (this.isFirstCircle) { this.isFirstCircle = false; this.CircleChartOption = { series: [ { type: "liquidFill", radius: "100%", backgroundStyle: { color: "#fff" //图表的背景颜色 }, animationDuration: 500, //初始动画的时长,支持回调函数,可以通过每个数据返回不同的 delay 时间实现更绚丽的初始动画效果 itemStyle: {...