Is there any way to create a graphics object

3 views (last 30 days)
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?

Answers (0)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!