F2 icon indicating copy to clipboard operation
F2 copied to clipboard

📱📈An elegant, interactive and flexible charting library for mobile.

Results 195 F2 issues
Sort by recently updated
recently updated
newest added

解决Vue3项目中编译包含自定义View及自定义Shape时需要使用@babel/plugin-transform-react-jsx的问题。详见examples中的vue3-ts项目示例。 备注:[自定义图表组件](https://antv-f2.gitee.io/zh/docs/tutorial/advanced/custom-view)需引用@antv/f2-vue中的HOC。例如: `import { withLegend } from "@antv/f2-vue"`。 close #1573 ##### Checklist - [x] `npm test` passes - [x] tests and/or benchmarks are included - [x] commit message follows commit...

##### Checklist - [ ] `npm test` passes - [ ] tests and/or benchmarks are included - [ ] commit message follows commit guidelines ##### Description of change

![image](https://user-images.githubusercontent.com/24467843/182817939-535ba9bf-cb39-43a6-b68b-b5c9a17c8bbb.png)

- [ ] I have searched the [issues](https://github.com/antvis/f2/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? 我想改提示信息的内容,我在文档中未找到任何关于此组件有哪些API ### What does...

Area设置渐变 官网还可以 为啥我这样配置很淡 几乎看不到 ![image](https://user-images.githubusercontent.com/12569325/175498910-f2137771-7812-4237-8758-a80a27ffe343.png) 渲染效果 ![image](https://user-images.githubusercontent.com/12569325/175498483-1f2ff696-0809-4b62-b485-f299b5985434.png)

- **F2 Version**: - **Platform**: - **Mini Showcase(like screenshots)**: - **CodeSandbox Link**:

- [ ] I have searched the [issues](https://github.com/antvis/f2/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? 希望实现的效果图 https://user-images.githubusercontent.com/5419886/174857155-ffe64d71-bb03-45c5-b727-a4b42c7ccc35.jpg 同时画分组柱状图和多条线图,图例中分组柱状图和线图都要有,tooltip中可以同时显示分组柱状图和线图的数据 类似于这个demo,但是有多条折线...

- [ ] I have searched the [issues](https://github.com/antvis/f2/issues) of this repository and believe that this is not a duplicate. ### Reproduction link [![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/f2-vue-forked-tcex2n?file=/src/App.vue) ### Steps to reproduce 点击页面中的“改变数据按钮”...

如果从接口请求数据,然后再渲染图标,只有滚动条可以滚动,数据不同步更新,只会全部渲染; 如果直接使用静态数据,滚动条可以滚动,数据也可以同时滚动 ``` //组件 const Testline = (props: { data: any[] }) => { return ( {/* */} ); }; 数据传入 ····· //方式一 const [Data, setData] = React.useState([ { date:...

- [x] I have searched the [issues](https://github.com/antvis/f2/issues) of this repository and believe that this is not a duplicate. ### What problem does this feature solve? @antv/f2-vue,在自定义图形时,项目中需要配置@babel/plugin-transform-react-jsx,但此配置的会对项目中其他使用JSX的组件/页面产生影响。 ### What does the...