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
When using autoresize with a stacked bar chart, I'm overlapping the Y axis with my first bar.
autoresize
<template> <la-cartesian autoresize stacked :data="values"> <la-bar prop="pv"></la-bar> <la-bar prop="uv"></la-bar> <la-bar prop="amt"></la-bar> <la-x-axis prop="name"></la-x-axis> <la-y-axis></la-y-axis> <la-tooltip></la-tooltip> </la-cartesian> </template> <script> import { Cartesian, Bar, Tooltip, XAxis, YAxis } from 'laue' export default { name: 'StackedBar', components: { LaCartesian: Cartesian, LaBar: Bar, LaTooltip: Tooltip, LaXAxis: XAxis, LaYAxis: YAxis }, data () { return { values: [ { name: 'Page A', uv: 4000, pv: 2400, amt: 2400 }, { name: 'Page B', uv: 3000, pv: 1398, amt: 2210 }, { name: 'Page C', uv: 2000, pv: 9800, amt: 2290 }, { name: 'Page D', uv: 2780, pv: 3908, amt: 2000 }, { name: 'Page E', uv: 1890, pv: 4800, amt: 1700 }, { name: 'Page F', uv: 2390, pv: 3800, amt: 2500 }, { name: 'Page A', uv: 4000, pv: 2400, amt: 2400 }, { name: 'Page B', uv: 3000, pv: 1398, amt: 2210 }, { name: 'Page C', uv: 2000, pv: 9800, amt: 2290 }, { name: 'Page D', uv: 2780, pv: 3908, amt: 2000 }, { name: 'Page E', uv: 1890, pv: 4800, amt: 1700 }, { name: 'Page F', uv: 2390, pv: 3800, amt: 2500 }, { name: 'Page G', uv: 3490, pv: 4300, amt: 2100 } ] } } } </script>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using
autoresize
with a stacked bar chart, I'm overlapping the Y axis with my first bar.The text was updated successfully, but these errors were encountered: