Microchip® Advanced Software Framework

 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Plot widget options

These options can be ORed together to specify the behaviour of a plot widget when creating it with wtk_plot_create.

Plot orientation configuration options.

For use with the option parameter of wtk_plot_create

#define WTK_PLOT_LEFT_TO_RIGHT   (0 << 0)
 Plot draws values from left to right. More...
 
#define WTK_PLOT_RIGHT_TO_LEFT   (1 << 0)
 Plot draws values from right to left. More...
 

Plot widget invert configuration options.

For use with the option parameter of wtk_plot_create

#define WTK_PLOT_INVERT   (1 << 1)
 Plot is inverted along y-axis. More...
 

Redraw parent disable options.

For use with the option parameter of wtk_plot_create

#define WTK_PLOT_DONT_REDRAW_PARENT   (1 << 2)
 Parent is not redrawn if background is transparent. More...
 

#define WTK_PLOT_DONT_REDRAW_PARENT   (1 << 2)

Parent is not redrawn if background is transparent.

Referenced by wtk_plot_create().

#define WTK_PLOT_INVERT   (1 << 1)

Plot is inverted along y-axis.

Referenced by wtk_plot_draw().

#define WTK_PLOT_LEFT_TO_RIGHT   (0 << 0)

Plot draws values from left to right.

#define WTK_PLOT_RIGHT_TO_LEFT   (1 << 0)

Plot draws values from right to left.

Referenced by wtk_plot_draw().