I have a base component named MyChart.qml like this
Item {
id: root
ChartView {
id: myChartView
}
RowLayout {
id: myToolbar
}
}
}
So it's basically a chart with a toolbar underneath it. I inherit this component in another component like this:
MyChart {
*List of Children*
}
Here, how can I add the List of Children to myToolbar instead of root of the MyChart component?