VChart
VChart copied to clipboard
VChart, more than just a cross-platform charting library, but also an expressive data storyteller.
1. 实现如下漏斗图 2. 交互状态效果如下 demo中用到的数据如下 ``` [{ "label": "进入直播间人数", "value": 10000, "attach": "万", "average": 2000 }, { "label": "商品曝光人数", "value": 9000, "attach": "万", "average": 1000 }, { "label": "商品点击人数", "value":...
### What problem does this feature solve? Wish word cloud support text as cloud shape,like this: ### What does the proposed API look like? add a "shapeType" field to wordCloudChart.wordCloudShapeConfig,...
参考 echarts 的如下配置: - [showEmptyCircle](https://echarts.apache.org/zh/option.html#series-pie.showEmptyCircle) - [emptyCircleStyle](https://echarts.apache.org/zh/option.html#series-pie.emptyCircleStyle)
### What problem does this feature solve? 目前还不支持阿里系小程序,希望可以进行支持 ### What does the proposed API look like? 支持钉钉小程序,支付宝小程序
### What problem does this feature solve? ### What does the proposed API look like? ``` interface IHistogramChartSpec { barPadding?: number; } ```
1. 分页器文字颜色看不清 2. 分页起按钮颜色比较迷惑,分不清是否可以点击 
您好,代码如下所示(不好意思不知道为什么乱了),我在父组件更新了props.enable3d,通过useEffect也观察到了props.enable3d的更新,但是图表组件并没有任何变化。 ` function AreaChart(props) { const [spec, setSpec] = useState({ type: 'area', data: props.dataConfig.data, ... }) const [options, setOptions] = useState({ options3d: { enable: true, enableView3dTransform: props.enable3d, }, }) React.useEffect(()=>{...