Would you like to work on this feature?
What problem are you trying to solve?
I have a type issue when I try to mix chart types
Describe the solution you'd like
I would like a specific , preferably typed way, of mixing chart types.
As shown in official documentation of ChartJS: https://www.chartjs.org/docs/latest/charts/mixed.html
Describe alternatives you've considered
Access the underlying chart JS instance and manually add my own data
Documentation, Adoption, Migration Strategy
<Bar :data="{
datasets: [{
type: 'bar',
label: 'Bar Dataset',
data: [10, 20, 30, 40]
}, {
type: 'line',
label: 'Line Dataset',
data: [50, 50, 50, 50],
}],
labels: ['January', 'February', 'March', 'April']
}" />
Would you like to work on this feature?
What problem are you trying to solve?
I have a type issue when I try to mix chart types
Describe the solution you'd like
I would like a specific , preferably typed way, of mixing chart types.
As shown in official documentation of ChartJS: https://www.chartjs.org/docs/latest/charts/mixed.html
Describe alternatives you've considered
Access the underlying chart JS instance and manually add my own data
Documentation, Adoption, Migration Strategy