As you can see in the diagram below, RChart has its own Graphic
Layer which ensures it is independent from the graphic toolkit you use. You
can either use AWT (Abstract Window Toolkit) or the SWT (Standard Widget Toolkit)
by just changing one line of code
You can enable the SWT implementation and run a 100% SWT control
by using the following java code:
GraphicsProvider.setMode(GraphicsProvider.MODE_SWT);
|