Is there any way to create a graphics object
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to create a graphics object which acts as a parent of child object with some functionalities.
The best example for this is Matlab's 'Contour' object.
I have looked up ChartContainer and Group,
but they are not what I wanted because:
ChartContainer is not a child of an axes, but it acts like an axes. This limits other functionalities that we expect from axes, for example, hold.
Group is not allowed to have subclass,
I want to have a class that its object satisfies:
- it is a graphics object so that it is visible in get(ax, 'Children').
- I can show multiple graphics object together in one axes
- I can modify its data so that its children (such as patch, line, etc) changes interactively.
Is there any way?
Respuestas (0)
Ver también
Categorías
Más información sobre Developing Chart Classes en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!