react-charts
react-charts copied to clipboard
⚛️ Simple, immersive & interactive charts for React
Here an example: https://codesandbox.io/s/goofy-haslett-00zw0n?file=/src/useDemoConfig.tsx When the secondary axis only have one value to represent, 5 in my example, no bars are shown.
``` const data = [ { label: "Data 1", data: [ { date: "01", kilometers: 10, }, { date: "03", kilometers: 9, }, ], }, { label: "Data 2", data:...
No type errors, but when rendering this error is thrown. `"react-charts": "3.0.0-beta.54"` ```ts import { Chart as GoogleChart } from "react-google-charts"; import { AxisOptions, Chart as ReactChart } from 'react-charts';...
This might not be the best way to go, but it WFM, @tannerlinsley :smiley_cat: I'm not a React person, but as I best understand what is going on, React 18...
changing onoly to only.
### Discussed in https://github.com/TanStack/react-charts/discussions/118 Originally posted by **shashank290521** September 5, 2020 how can we show name of axis? means what x and y axis is representing how to give label...
fix typo
I am on the latest Next.js version and I can't seem to get React charts working. Here's my package.json file for versions: `{ "name": "next13-demo", "version": "0.1.0", "private": true, "scripts":...
`tickCount` can be set on a Y axis to reduce the amount of ticks that are shown. I would like to be able to do the same for the X...