We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<CartesianChart data={weeklySalesArray} xKey="weeksAgo" yKeys={['revenue']} axisOptions={{ font, formatXLabel: value => { return `${value} weeks ago`; }, formatYLabel: value => { return `₹${value}`; }, tickCount: 5, }}> {({points, chartBounds}) => ( <Bar points={points.revenue} chartBounds={chartBounds} color="red" roundedCorners={{topLeft: 10, topRight: 10}} animate={{type: 'timing', duration: 2000}}> <LinearGradient start={vec(0, 0)} end={vec(0, 400)} colors={['green', '#90ee9050']} /> </Bar> )} </CartesianChart>``` am i doing anything wrong in the configuration
The text was updated successfully, but these errors were encountered:
Your code is correct, the text is overlapping because of the length. What is your expected output or design you are trying to achieve?
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: