| Top |
| gdouble | center | Read / Write |
| gdouble | font-size | Read / Write |
| gdouble | line-width | Read / Write |
| gdouble | point-radius | Read / Write |
| gdouble | x-end | Read / Write |
| gpointer | x-label | Read / Write |
| gdouble | x-label-start | Read / Write |
| gdouble | x-label-step-width | Read / Write |
| gdouble | x-margin | Read / Write |
| gdouble | x-scale-step-width | Read / Write |
| gdouble | x-start | Read / Write |
| gdouble | x-step | Read / Write |
| gdouble | x-step-width | Read / Write |
| gchar * | x-unit | Read / Write |
| gdouble | x-unit-x0 | Read / Write |
| gdouble | x-unit-y0 | Read / Write |
| gdouble | y-end | Read / Write |
| gpointer | y-label | Read / Write |
| gdouble | y-label-start | Read / Write |
| gdouble | y-label-step-height | Read / Write |
| gdouble | y-margin | Read / Write |
| gdouble | y-scale-step-height | Read / Write |
| gdouble | y-start | Read / Write |
| gdouble | y-step | Read / Write |
| gdouble | y-step-height | Read / Write |
| gchar * | y-unit | Read / Write |
| gdouble | y-unit-x0 | Read / Write |
| gdouble | y-unit-y0 | Read / Write |
| #define | AGS_CARTESIAN_DEFAULT_X_MARGIN |
| #define | AGS_CARTESIAN_DEFAULT_Y_MARGIN |
| #define | AGS_CARTESIAN_DEFAULT_X_STEP_WIDTH |
| #define | AGS_CARTESIAN_DEFAULT_Y_STEP_HEIGHT |
| #define | AGS_CARTESIAN_DEFAULT_X_SCALE_STEP_WIDTH |
| #define | AGS_CARTESIAN_DEFAULT_Y_SCALE_STEP_HEIGHT |
| #define | AGS_CARTESIAN_DEFAULT_X_STEP |
| #define | AGS_CARTESIAN_DEFAULT_Y_STEP |
| #define | AGS_CARTESIAN_DEFAULT_X_START |
| #define | AGS_CARTESIAN_DEFAULT_X_END |
| #define | AGS_CARTESIAN_DEFAULT_Y_START |
| #define | AGS_CARTESIAN_DEFAULT_Y_END |
| #define | AGS_CARTESIAN_DEFAULT_X_LABEL_START |
| #define | AGS_CARTESIAN_DEFAULT_X_LABEL_STEP_WIDTH |
| #define | AGS_CARTESIAN_DEFAULT_Y_LABEL_START |
| #define | AGS_CARTESIAN_DEFAULT_Y_LABEL_STEP_HEIGHT |
| enum | AgsCartesianFlags |
| enum | AgsPlotFillFlags |
| struct | AgsPlot |
| #define | AGS_TYPE_CARTESIAN |
| struct | AgsCartesian |
| struct | AgsCartesianClass |
#define AGS_CARTESIAN_STEP_CONVERSION_FUNC(current, is_abscissae, data) ((AgsCartesianStepConversionFunc)(current, is_abscissae, data))
#define AGS_CARTESIAN_TRANSLATE_FUNCT(x, y, ret_x, ret_y, data) ((AgsCartesianTranslateFunc)(x, y, ret_x, ret_y, data))
#define AGS_CARTESIAN_SCALE_FUNC(value, data) ((AgsCartesianScaleFunc)(value, data))
#define AGS_CARTESIAN_LABEL_FUNC(value, data) ((AgsCartesianLabelFunc)(value, data))
gdouble (*AgsCartesianStepConversionFunc) (gdouble current,gboolean is_abscissae,gpointer data);
void (*AgsCartesianTranslateFunc) (gdouble x,gdouble y,gdouble *ret_x,gdouble *ret_y,gpointer data);
AgsPlot * ags_plot_alloc (guint n_points,guint n_bitmaps,guint n_pixmaps);
Allocate AgsPlot.
Since: 3.0.0
guint
ags_plot_get_n_points (AgsPlot *plot);
Get number of points.
Since: 3.2.0
void ags_plot_set_n_points (AgsPlot *plot,guint n_points);
Set n_points field of plot
.
Since: 3.2.0
gboolean
ags_plot_get_join_points (AgsPlot *plot);
Get join points.
Since: 3.2.0
void ags_plot_set_join_points (AgsPlot *plot,gboolean join_points);
Set join_points field of plot
.
Since: 3.2.0
void ags_plot_set_point (AgsPlot *plot,gdouble **point);
Set point field of plot
.
plot |
the AgsPlot. |
[type gpointer] |
point |
the points as array of coordinates. |
[transfer full] |
Since: 3.2.0
gdouble **
ags_plot_get_point_color (AgsPlot *plot);
Get point colors.
Since: 3.2.0
void ags_plot_set_point_color (AgsPlot *plot,gdouble **point_color);
Set point color field of plot
.
plot |
the AgsPlot. |
[type gpointer] |
point_color |
the points colors as array of RGB value. |
[transfer full] |
Since: 3.2.0
gchar **
ags_plot_get_point_label (AgsPlot *plot);
Get point labels.
Since: 3.2.0
void ags_plot_set_point_label (AgsPlot *plot,gchar **point_label);
Set point label field of plot
.
plot |
the AgsPlot. |
[type gpointer] |
point_label |
the points labels as string vector. |
[transfer full] |
Since: 3.2.0
guint
ags_plot_get_n_bitmaps (AgsPlot *plot);
Get number of bitmaps.
Since: 3.2.0
void ags_plot_set_n_bitmaps (AgsPlot *plot,guint n_bitmaps);
Set n_bitmaps field of plot
.
Since: 3.2.0
void ags_plot_set_bitmap (AgsPlot *plot,guchar **bitmap);
Set bitmap field of plot
.
Since: 3.2.0
gdouble **
ags_plot_get_bitmap_color (AgsPlot *plot);
Get bitmap colors.
Since: 3.2.0
void ags_plot_set_bitmap_color (AgsPlot *plot,gdouble **bitmap_color);
Set bitmap color field of plot
.
plot |
the AgsPlot. |
[type gpointer] |
bitmap_color |
the bitmaps colors as array of RGB value. |
[transfer full] |
Since: 3.2.0
guint
ags_plot_get_n_pixmaps (AgsPlot *plot);
Get number of pixmaps.
Since: 3.2.0
void ags_plot_set_n_pixmaps (AgsPlot *plot,guint n_pixmaps);
Set n_pixmaps field of plot
.
Since: 3.2.0
void ags_plot_set_pixmap (AgsPlot *plot,guchar **pixmap);
Set pixmap field of plot
.
Since: 3.2.0
void ags_cartesian_add_plot (AgsCartesian *cartesian,AgsPlot *plot);
Add plot
to cartesian
.
Since: 3.0.0
void ags_cartesian_remove_plot (AgsCartesian *cartesian,AgsPlot *plot);
Remove plot
from cartesian
.
Since: 3.0.0
gdouble
ags_cartesian_get_x_margin (AgsCartesian *cartesian);
Get x margin of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_margin (AgsCartesian *cartesian,gdouble x_margin);
Set x margin of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_margin (AgsCartesian *cartesian);
Get y margin of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_margin (AgsCartesian *cartesian,gdouble y_margin);
Set y margin of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_center (AgsCartesian *cartesian);
Get center of cartesian
.
Since: 3.2.0
void ags_cartesian_set_center (AgsCartesian *cartesian,gdouble center);
Set center of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_line_width (AgsCartesian *cartesian);
Get line width of cartesian
.
Since: 3.2.0
void ags_cartesian_set_line_width (AgsCartesian *cartesian,gdouble line_width);
Set line width of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_point_radius (AgsCartesian *cartesian);
Get point radius.
Since: 3.2.0
void ags_cartesian_set_point_radius (AgsCartesian *cartesian,gdouble point_radius);
Set point radius.
Since: 3.2.0
gdouble
ags_cartesian_get_font_size (AgsCartesian *cartesian);
Get font size of cartesian
.
Since: 3.2.0
void ags_cartesian_set_font_size (AgsCartesian *cartesian,gdouble font_size);
Set font size of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_step_width (AgsCartesian *cartesian);
Get x step width of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_step_width (AgsCartesian *cartesian,gdouble x_step_width);
Set x step width of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_step_height (AgsCartesian *cartesian);
Get y step height.
Since: 3.2.0
void ags_cartesian_set_y_step_height (AgsCartesian *cartesian,gdouble y_step_height);
Set y step height of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_scale_step_width (AgsCartesian *cartesian);
Get x scale step width of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_scale_step_width (AgsCartesian *cartesian,gdouble x_scale_step_width);
Set x scale step width of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_scale_step_height (AgsCartesian *cartesian);
Get y scale step height of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_scale_step_height (AgsCartesian *cartesian,gdouble y_scale_step_height);
Set y scale step height of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_unit_x0 (AgsCartesian *cartesian);
Get x unit x0 of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_unit_x0 (AgsCartesian *cartesian,gdouble x_unit_x0);
Set x unit x0 of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_unit_y0 (AgsCartesian *cartesian);
Get x unit y0 of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_unit_y0 (AgsCartesian *cartesian,gdouble x_unit_y0);
Set x unit y0 of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_unit_size (AgsCartesian *cartesian);
Get x unit size of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_unit_size (AgsCartesian *cartesian,gdouble x_unit_size);
Set x unit size of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_unit_x0 (AgsCartesian *cartesian);
Get y unit x0 of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_unit_x0 (AgsCartesian *cartesian,gdouble y_unit_x0);
Set y unit x0 of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_unit_y0 (AgsCartesian *cartesian);
Get y unit y0 of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_unit_y0 (AgsCartesian *cartesian,gdouble y_unit_y0);
Set y unit y0 of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_unit_size (AgsCartesian *cartesian);
Get y unit size of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_unit_size (AgsCartesian *cartesian,gdouble y_unit_size);
Set y unit size of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_label_start (AgsCartesian *cartesian);
Get x label start of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_label_start (AgsCartesian *cartesian,gdouble x_label_start);
Set x label start of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_label_step_width (AgsCartesian *cartesian);
Get x label step width.
Since: 3.2.0
void ags_cartesian_set_x_label_step_width (AgsCartesian *cartesian,gdouble x_label_step_width);
Set x label step width of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_label_start (AgsCartesian *cartesian);
Get y label start of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_label_start (AgsCartesian *cartesian,gdouble y_label_start);
Set y label start of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_label_step_height (AgsCartesian *cartesian);
Get y label step height of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_label_step_height (AgsCartesian *cartesian,gdouble y_label_step_height);
Set y label step height of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_step (AgsCartesian *cartesian);
Get x step of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_step (AgsCartesian *cartesian,gdouble x_step);
Set x step of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_step (AgsCartesian *cartesian);
Get y step of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_step (AgsCartesian *cartesian,gdouble y_step);
Set y step of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_start (AgsCartesian *cartesian);
Get x start of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_start (AgsCartesian *cartesian,gdouble x_start);
Set x start of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_end (AgsCartesian *cartesian);
Get x end of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_end (AgsCartesian *cartesian,gdouble x_end);
Set x end of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_start (AgsCartesian *cartesian);
Get y start of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_start (AgsCartesian *cartesian,gdouble y_start);
Set y start of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_end (AgsCartesian *cartesian);
Get y end of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_end (AgsCartesian *cartesian,gdouble y_end);
Set y end of cartesian
.
Since: 3.2.0
gchar *
ags_cartesian_get_x_unit (AgsCartesian *cartesian);
Get x unit of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_unit (AgsCartesian *cartesian,gchar *x_unit);
Set x unit of cartesian
.
Since: 3.2.0
gchar *
ags_cartesian_get_y_unit (AgsCartesian *cartesian);
Get y unit of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_unit (AgsCartesian *cartesian,gchar *y_unit);
Set y unit of cartesian
.
Since: 3.2.0
gchar **
ags_cartesian_get_x_label (AgsCartesian *cartesian);
Get x label of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_label (AgsCartesian *cartesian,gchar **x_label);
Set x label of cartesian
.
Since: 3.2.0
gchar **
ags_cartesian_get_y_label (AgsCartesian *cartesian);
Get y label of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_label (AgsCartesian *cartesian,gchar **y_label);
Set y label of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_step_factor (AgsCartesian *cartesian);
Get x step factor of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_step_factor (AgsCartesian *cartesian,gdouble x_step_factor);
Set x step factor of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_step_factor (AgsCartesian *cartesian);
Get y step factor of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_step_factor (AgsCartesian *cartesian,gdouble y_step_factor);
Set y step factor of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_small_scale_factor
(AgsCartesian *cartesian);
Get x small scale factor of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_small_scale_factor (AgsCartesian *cartesian,gdouble x_small_scale_factor);
Set x small scale factor of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_big_scale_factor (AgsCartesian *cartesian);
Get x big scale factor of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_big_scale_factor (AgsCartesian *cartesian,gdouble x_big_scale_factor);
Set x big scale factor of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_small_scale_factor
(AgsCartesian *cartesian);
Get y small scale factor of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_small_scale_factor (AgsCartesian *cartesian,gdouble y_small_scale_factor);
Set y small scale factor of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_big_scale_factor (AgsCartesian *cartesian);
Get y big scale factor of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_big_scale_factor (AgsCartesian *cartesian,gdouble y_big_scale_factor);
Set y big scale factor of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_label_factor (AgsCartesian *cartesian);
Get x label factor of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_label_factor (AgsCartesian *cartesian,gdouble x_label_factor);
Set x label factor of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_x_label_precision (AgsCartesian *cartesian);
Get x label precision of cartesian
.
Since: 3.2.0
void ags_cartesian_set_x_label_precision (AgsCartesian *cartesian,gdouble x_label_precision);
Set x label precision of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_label_factor (AgsCartesian *cartesian);
Get y label factor of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_label_factor (AgsCartesian *cartesian,gdouble y_label_factor);
Set y label factor of cartesian
.
Since: 3.2.0
gdouble
ags_cartesian_get_y_label_precision (AgsCartesian *cartesian);
Get y label precision of cartesian
.
Since: 3.2.0
void ags_cartesian_set_y_label_precision (AgsCartesian *cartesian,gdouble y_label_precision);
Set y label precision of cartesian
.
Since: 3.2.0
cairo_surface_t *
ags_cartesian_get_surface (AgsCartesian *cartesian);
Get cairo surface of cartesian
.
Since: 3.2.0
gdouble ags_cartesian_linear_step_conversion_func (gdouble current,gboolean is_abscissae,gpointer data);
Perform linear step conversion.
Since: 3.0.0
void ags_cartesian_linear_translate_func (gdouble x,gdouble y,gdouble *ret_x,gdouble *ret_y,gpointer data);
Perform linear translation.
x |
the x position |
|
y |
the y position |
|
ret_x |
the return location of translated x. |
[out] |
ret_y |
the return location of transloated y. |
[out] |
data |
the AgsCartesian |
Since: 3.0.0
gdouble ags_cartesian_linear_x_small_scale_func (gdouble value,gpointer data);
Labeling function of x small scale
Since: 3.0.0
gdouble ags_cartesian_linear_x_big_scale_func (gdouble value,gpointer data);
Labeling function of x big scale
Since: 3.0.0
gdouble ags_cartesian_linear_y_small_scale_func (gdouble value,gpointer data);
Labeling function of y small scale
Since: 3.0.0
gdouble ags_cartesian_linear_y_big_scale_func (gdouble value,gpointer data);
Labeling function of y big scale
Since: 3.0.0
gchar * ags_cartesian_linear_x_label_func (gdouble value,gpointer data);
Format x label value
appropriately.
Since: 3.0.0
gchar * ags_cartesian_linear_y_label_func (gdouble value,gpointer data);
Format y label value
appropriately.
Since: 3.0.0
void ags_cartesian_reallocate_label (AgsCartesian *cartesian,gboolean do_x_label);
Reallocate x label if do_x_label
, otherwise y label.
Since: 3.0.0
void ags_cartesian_fill_label (AgsCartesian *cartesian,gboolean do_x_label);
Fill x label if do_x_label
, otherwise y label.
Since: 3.0.0
AgsCartesian * ags_cartesian_new ();
Create a new instance of AgsCartesian
Since: 3.0.0
#define AGS_CARTESIAN(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), AGS_TYPE_CARTESIAN, AgsCartesian))
#define AGS_CARTESIAN_CLASS(class) (G_TYPE_CHECK_CLASS_CAST((class), AGS_TYPE_CARTESIAN, AgsCartesianClass))
#define AGS_CARTESIAN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), AGS_TYPE_CARTESIAN, AgsCartesianClass))
#define AGS_IS_CARTESIAN(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), AGS_TYPE_CARTESIAN))
#define AGS_IS_CARTESIAN_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE((class), AGS_TYPE_CARTESIAN))
struct AgsPlot {
guint fill_flags;
guint n_points;
gboolean join_points;
gdouble **point;
gdouble **point_color;
gchar **point_label;
guint n_bitmaps;
guchar **bitmap;
gdouble **bitmap_color;
guint n_pixmaps;
gdouble ***pixmap;
};
“center” property“center” gdouble
The center of lines
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 0.5
Since: 3.0.0
“font-size” property“font-size” gdouble
The font's size to draw labels and units.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 12
Since: 3.0.0
“line-width” property“line-width” gdouble
The line width.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 1
Since: 3.0.0
“point-radius” property“point-radius” gdouble
The points radius.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 0
Since: 3.0.0
“x-end” property“x-end” gdouble
The x end.
Owner: AgsCartesian
Flags: Read / Write
Default value: 199
Since: 3.0.0
“x-label” property“x-label” gpointer
The x labels as a string array.
Owner: AgsCartesian
Flags: Read / Write
Since: 3.0.0
“x-label-start” property“x-label-start” gdouble
The x label start position.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 10
Since: 3.0.0
“x-label-step-width” property“x-label-step-width” gdouble
The x label step width.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 50
Since: 3.0.0
“x-margin” property“x-margin” gdouble
The horizontal x margin.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 24
Since: 3.0.0
“x-scale-step-width” property“x-scale-step-width” gdouble
The width of a x scale step.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 10
Since: 3.0.0
“x-start” property“x-start” gdouble
The x start.
Owner: AgsCartesian
Flags: Read / Write
Default value: -60
Since: 3.0.0
“x-step” property“x-step” gdouble
The x step.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 1
Since: 3.0.0
“x-step-width” property“x-step-width” gdouble
The width of a x step.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 10
Since: 3.0.0
“x-unit” property“x-unit” gchar *
The x unit label.
Owner: AgsCartesian
Flags: Read / Write
Default value: NULL
Since: 3.0.0
“x-unit-x0” property“x-unit-x0” gdouble
The x unit's x0 position.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 0
Since: 3.0.0
“x-unit-y0” property“x-unit-y0” gdouble
The x unit's y0 position.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 0
Since: 3.0.0
“y-end” property“y-end” gdouble
The y end.
Owner: AgsCartesian
Flags: Read / Write
Default value: 99
Since: 3.0.0
“y-label” property“y-label” gpointer
The y labels as a string array.
Owner: AgsCartesian
Flags: Read / Write
Since: 3.0.0
“y-label-start” property“y-label-start” gdouble
The y label start position.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 20
Since: 3.0.0
“y-label-step-height” property“y-label-step-height” gdouble
The y label step height.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 50
Since: 3.0.0
“y-margin” property“y-margin” gdouble
The horizontal y margin.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 24
Since: 3.0.0
“y-scale-step-height” property“y-scale-step-height” gdouble
The height of a y scale step.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 10
Since: 3.0.0
“y-start” property“y-start” gdouble
The y start.
Owner: AgsCartesian
Flags: Read / Write
Default value: -70
Since: 3.0.0
“y-step” property“y-step” gdouble
The y step.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 1
Since: 3.0.0
“y-step-height” property“y-step-height” gdouble
The height of a y step.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 10
Since: 3.0.0
“y-unit” property“y-unit” gchar *
The y unit label.
Owner: AgsCartesian
Flags: Read / Write
Default value: NULL
Since: 3.0.0
“y-unit-x0” property“y-unit-x0” gdouble
The y unit's x0 position.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 0
Since: 3.0.0
“y-unit-y0” property“y-unit-y0” gdouble
The y unit's y0 position.
Owner: AgsCartesian
Flags: Read / Write
Allowed values: >= 0
Default value: 0
Since: 3.0.0