ant-design-charts icon indicating copy to clipboard operation
ant-design-charts copied to clipboard

A React Chart Library

Results 345 ant-design-charts issues
Sort by recently updated
recently updated
newest added

I've decided to create a separate issue to capture some of the workarounds and suggestions from https://github.com/ant-design/ant-design-charts/issues/1416 As you can see from https://codesandbox.io/embed/sleepy-pond-5lz1d6?fontsize=14&hidenavigation=1&theme=dark, the issue that with annotations of type...

keyBindingProps 的值如果通过 state 控制,state 变化后画布的键盘绑定事件没有变化 _Originally posted by @jx-zyf in https://github.com/ant-design/ant-design-charts/issues/1176#issuecomment-1047518785_

### 🐛 bug 描述 使用双轴图时,当设置了slider,并且slider的start 不为0时,折线图没有填满空间,并且当光标悬浮在某个数据点的位置时,tooltip未正常显示。 ### 📷 复现步骤 [清晰描述复现步骤,让别人也能看到问题] 使用官方文档上的双轴线示例 https://charts.ant.design/zh/examples/dual-axes/dual-line#dual-line, 或者下方复现代码。 config 中增加 slider, start设置为 0.7或其他值。 ### 🏞 期望结果 [描述你原本期望看到的结果] 折线根据slider start 设置的范围数据,填充图表空间,tooltip跟随光标位置。 ### 💻 复现代码 [提供可复现的代码,仓库,或线上示例] https://codesandbox.io/s/g50jrj...

Would be great if more project management related graphs were added! Thanks for the project, it's great!

plots

### 🐛 bug 描述 [详细地描述 bug,让大家都能理解] ``` // Function const config = { data, xField: 'type', yField: 'value', colorField: 'value', color: ({ value }) => { if(type === '1'){ return...

### 🧐 问题描述 [详细地描述问题,让大家都能理解] Would it be possible to receive an event with the data of the slider when that slider is moved? so we can use it to change...

### 🐛 bug 描述 [详细地描述 bug,让大家都能理解] 在箱型图中使用标注,标注无法显示,文本标注,辅助线标注都不行 ### 📷 复现步骤 [清晰描述复现步骤,让别人也能看到问题] ### 🏞 期望结果 [描述你原本期望看到的结果] ### 💻 复现代码 [提供可复现的代码,仓库,或线上示例] import React, { useState, useEffect } from 'react'; import ReactDOM from...

环图中, label.type = 'spider'; formatter 某一条数据 return null; 导致整个label都不展示 ``label: { type: 'spider', formatter: (data) => { if (data.value == 0) return; return `${data.percent}%`; }, }``

this errors happens when i use this example: https://charts.ant.design/en/examples/progress-plots/gauge#custom-indicator2 reproduce: - npx create-react-app my-app --template typescript - install react-router-dom - install antd - install ant-design/charts - use the example in...

plots

### 🥰 需求描述 [详细地描述需求,让大家都能理解] First of all, hello, I just started using antd chart. I want to use '{ Mix } from '@ant-design/plots'' component, but the chart types I will...