Could i change the API of the following in the ctk library?
class CTK_VISUALIZATION_VTK_WIDGETS_EXPORT ctkVTKChartView : public ctkVTKOpenGLNativeWidget
{
Q_INVOKABLE vtkChartXY* chart()const;
chart() to return a vtkChart object instead of vtkChartXY?
I wanna do that because i need vtkChartParallelCoordinates instead of vtkChartXY.
Also this will enable us to be able to add other subclasses of vtkChart such as, vtkChartBox, vtkChartPie. vtkHistogram2D.
Adding support for more chart types would be great!
Adding an API to get/set vtkChart* is certainly necessary for this, but simply changing the return type would be a breaking change (could cause compilation errors) that would be nice to avoid. For example we could simply add a new method (abstractChart(), generalChart(), …).
We would need to see all the necessary API changes for making a final decision on whether we should make any breaking changes.