<template> <DocSectionText v-bind="$attrs"> <p>A bar chart is rendered horizontally when <i>indexAxis</i> option is set as <i>y</i>.</p> </DocSectionText> <div class="card"> <Chart type="bar" :data="chartData" :options="chartOptions" class="h-30rem" /> </div> <DocSectionCode :code="code" :dependencies="{ 'chart.js': '3.3.2' }" component="Chart" /> </template> <script> export default { data() { return { chartData: null, chartOptions: null, code: { basic: `<Chart type="bar" :data="chartData" :options="chartOptions" class="h-30rem" />`, options: `<template> <div class="card"> <Chart type="bar" :data="chartData" :options="chartOptions" class="h-30rem" /> </div> </template> <script> export default { data() { return { chartData: null, chartOptions: null }; }, mounted() { this.chartData = this.setChartData(); this.chartOptions = this.setChartOptions(); }, methods: { setChartData() { const documentStyle = getComputedStyle(document.documentElement); return { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], datasets: [ { label: 'My First dataset', backgroundColor: documentStyle.getPropertyValue('--blue-500'), borderColor: documentStyle.getPropertyValue('--blue-500'), data: [65, 59, 80, 81, 56, 55, 40] }, { label: 'My Second dataset', backgroundColor: documentStyle.getPropertyValue('--pink-500'), borderColor: documentStyle.getPropertyValue('--pink-500'), data: [28, 48, 40, 19, 86, 27, 90] } ] }; }, setChartOptions() { const documentStyle = getComputedStyle(document.documentElement); const textColor = documentStyle.getPropertyValue('--text-color'); const textColorSecondary = documentStyle.getPropertyValue('--text-color-secondary'); const surfaceBorder = documentStyle.getPropertyValue('--surface-border'); return { indexAxis: 'y', maintainAspectRatio: false, aspectRatio: 0.8, plugins: { legend: { labels: { fontColor: textColor } } }, scales: { x: { ticks: { color: textColorSecondary, font: { weight: 500 } }, grid: { display: false, drawBorder: false } }, y: { ticks: { color: textColorSecondary }, grid: { color: surfaceBorder, drawBorder: false } } } }; } } }; <\/script>`, composition: `<template> <div class="card"> <Chart type="bar" :data="chartData" :options="chartOptions" class="h-30rem" /> </div> </template> <script setup> import { ref, onMounted } from "vue"; onMounted(() => { chartData.value = setChartData(); chartOptions.value = setChartOptions(); }); const chartData = ref(); const chartOptions = ref(); const setChartData = () => { const documentStyle = getComputedStyle(document.documentElement); return { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], datasets: [ { label: 'My First dataset', backgroundColor: documentStyle.getPropertyValue('--blue-500'), borderColor: documentStyle.getPropertyValue('--blue-500'), data: [65, 59, 80, 81, 56, 55, 40] }, { label: 'My Second dataset', backgroundColor: documentStyle.getPropertyValue('--pink-500'), borderColor: documentStyle.getPropertyValue('--pink-500'), data: [28, 48, 40, 19, 86, 27, 90] } ] }; }; const setChartOptions = () => { const documentStyle = getComputedStyle(document.documentElement); const textColor = documentStyle.getPropertyValue('--text-color'); const textColorSecondary = documentStyle.getPropertyValue('--text-color-secondary'); const surfaceBorder = documentStyle.getPropertyValue('--surface-border'); return { indexAxis: 'y', maintainAspectRatio: false, aspectRatio: 0.8, plugins: { legend: { labels: { fontColor: textColor } } }, scales: { x: { ticks: { color: textColorSecondary, font: { weight: 500 } }, grid: { display: false, drawBorder: false } }, y: { ticks: { color: textColorSecondary }, grid: { color: surfaceBorder, drawBorder: false } } } }; } <\/script>` } }; }, mounted() { this.chartData = this.setChartData(); this.chartOptions = this.setChartOptions(); }, methods: { setChartData() { const documentStyle = getComputedStyle(document.documentElement); return { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], datasets: [ { label: 'My First dataset', backgroundColor: documentStyle.getPropertyValue('--blue-500'), borderColor: documentStyle.getPropertyValue('--blue-500'), data: [65, 59, 80, 81, 56, 55, 40] }, { label: 'My Second dataset', backgroundColor: documentStyle.getPropertyValue('--pink-500'), borderColor: documentStyle.getPropertyValue('--pink-500'), data: [28, 48, 40, 19, 86, 27, 90] } ] }; }, setChartOptions() { const documentStyle = getComputedStyle(document.documentElement); const textColor = documentStyle.getPropertyValue('--text-color'); const textColorSecondary = documentStyle.getPropertyValue('--text-color-secondary'); const surfaceBorder = documentStyle.getPropertyValue('--surface-border'); return { indexAxis: 'y', maintainAspectRatio: false, aspectRatio: 0.8, plugins: { legend: { labels: { fontColor: textColor } } }, scales: { x: { ticks: { color: textColorSecondary, font: { weight: 500 } }, grid: { display: false, drawBorder: false } }, y: { ticks: { color: textColorSecondary }, grid: { color: surfaceBorder, drawBorder: false } } } }; } } }; </script>