A set of string constants for the parameter VisualizeImageChartRequest.style_options. More…
Static Public Attributes | |
| const string | POINTCOLOR = “pointcolor” |
| The color of points in the plot represented as a hexadecimal number. | |
| const string | POINTSIZE = “pointsize” |
| The size of points in the plot represented as number of pixels. | |
| const string | POINTSHAPE = “pointshape” |
| The shape of points in the plot. | |
| const string | NONE = “none” |
| No scale is applied to the y axis. | |
| const string | CIRCLE = “circle” |
| A constant for the VisualizeImageChartRequest.StyleOptions options. | |
| const string | SQUARE = “square” |
| A constant for the VisualizeImageChartRequest.StyleOptions options. | |
| const string | DIAMOND = “diamond” |
| A constant for the VisualizeImageChartRequest.StyleOptions options. | |
| const string | HOLLOWCIRCLE = “hollowcircle” |
| A constant for the VisualizeImageChartRequest.StyleOptions options. | |
| const string | HOLLOWSQUARE = “hollowsquare” |
| A constant for the VisualizeImageChartRequest.StyleOptions options. | |
| const string | HOLLOWDIAMOND = “hollowdiamond” |
| A constant for the VisualizeImageChartRequest.StyleOptions options. | |
| const string | CB_POINTCOLORS = “cb_pointcolors” |
| Point color class break information consisting of three entries: class-break attribute, class-break values/ranges, and point color values. | |
| const string | CB_POINTSIZES = “cb_pointsizes” |
| Point size class break information consisting of three entries: class-break attribute, class-break values/ranges, and point size values. | |
| const string | CB_POINTSHAPES = “cb_pointshapes” |
| Point shape class break information consisting of three entries: class-break attribute, class-break values/ranges, and point shape names. | |
| const string | CB_DELIMITER = “cb_delimiter” |
| A character or string which separates per-class values in a class-break style option string. | |
| const string | X_ORDER_BY = “x_order_by” |
| An expression or aggregate expression by which non-numeric x column values are sorted, e.g. | |
| const string | Y_ORDER_BY = “y_order_by” |
| An expression or aggregate expression by which non-numeric y column values are sorted, e.g. | |
| const string | SCALE_TYPE_X = “scale_type_x” |
| Type of x axis scale. | |
| const string | LOG = “log” |
| A base-10 log scale is applied to the y axis. | |
| const string | SCALE_TYPE_Y = “scale_type_y” |
| Type of y axis scale. | |
| const string | MIN_MAX_SCALED = “min_max_scaled” |
If this options is set to FALSE, this endpoint expects request’s min/max values are not yet scaled. | |
| const string | JITTER_X = “jitter_x” |
| Amplitude of horizontal jitter applied to non-numeric x column values. | |
| const string | JITTER_Y = “jitter_y” |
| Amplitude of vertical jitter applied to non-numeric y column values. | |
| const string | PLOT_ALL = “plot_all” |
If this options is set to TRUE, all non-numeric column values are plotted ignoring min_x, max_x, min_y and max_y parameters. | |
Detailed Description
A set of string constants for the parameter VisualizeImageChartRequest.style_options.
Rendering style options for a chart.
Definition at line 26 of file VisualizeImageChart.cs.
Member Data Documentation
◆ CB_DELIMITER
| static |
A character or string which separates per-class values in a class-break style option string.
The default value is ’;’.
Definition at line 148 of file VisualizeImageChart.cs.
◆ CB_POINTCOLORS
| static |
Point color class break information consisting of three entries: class-break attribute, class-break values/ranges, and point color values.
This option overrides the pointcolor option if both are provided. Class-break ranges are represented in the form of “min:max”. Class-break values/ranges and point color values are separated by cb_delimiter, e.g. “price”, “20:30;30:40;40:50”, “0xFF0000;0x00FF00;0x0000FF”.
Definition at line 123 of file VisualizeImageChart.cs.
◆ CB_POINTSHAPES
| static |
Point shape class break information consisting of three entries: class-break attribute, class-break values/ranges, and point shape names.
This option overrides the pointshape option if both are provided. Class-break ranges are represented in the form of “min:max”. Class-break values/ranges and point shape names are separated by cb_delimiter, e.g. “states”, “NY;TX;CA”, “circle;square;diamond”.
Definition at line 143 of file VisualizeImageChart.cs.
◆ CB_POINTSIZES
| static |
Point size class break information consisting of three entries: class-break attribute, class-break values/ranges, and point size values.
This option overrides the pointsize option if both are provided. Class-break ranges are represented in the form of “min:max”. Class-break values/ranges and point size values are separated by cb_delimiter, e.g. “states”, “NY;TX;CA”, “3;5;7”.
Definition at line 133 of file VisualizeImageChart.cs.
◆ CIRCLE
| static |
A constant for the VisualizeImageChartRequest.StyleOptions options.
Definition at line 88 of file VisualizeImageChart.cs.
◆ DIAMOND
| static |
A constant for the VisualizeImageChartRequest.StyleOptions options.
Definition at line 98 of file VisualizeImageChart.cs.
◆ HOLLOWCIRCLE
| static |
A constant for the VisualizeImageChartRequest.StyleOptions options.
Definition at line 103 of file VisualizeImageChart.cs.
◆ HOLLOWDIAMOND
| static |
A constant for the VisualizeImageChartRequest.StyleOptions options.
Definition at line 113 of file VisualizeImageChart.cs.
◆ HOLLOWSQUARE
| static |
A constant for the VisualizeImageChartRequest.StyleOptions options.
Definition at line 108 of file VisualizeImageChart.cs.
◆ JITTER_X
| static |
Amplitude of horizontal jitter applied to non-numeric x column values.
The default value is ‘0.0’.
Definition at line 221 of file VisualizeImageChart.cs.
◆ JITTER_Y
| static |
Amplitude of vertical jitter applied to non-numeric y column values.
The default value is ‘0.0’.
Definition at line 226 of file VisualizeImageChart.cs.
◆ LOG
| static |
A base-10 log scale is applied to the y axis.
Definition at line 183 of file VisualizeImageChart.cs.
◆ MIN_MAX_SCALED
| static |
If this options is set to FALSE, this endpoint expects request’s min/max values are not yet scaled.
They will be scaled according to scale_type_x or scale_type_y for response. If this options is set to TRUE, this endpoint expects request’s min/max values are already scaled according to scale_type_x/scale_type_y. Response’s min/max values will be equal to request’s min/max values. The default value is ‘false’.
Definition at line 216 of file VisualizeImageChart.cs.
◆ NONE
| static |
No scale is applied to the y axis.
Definition at line 83 of file VisualizeImageChart.cs.
◆ PLOT_ALL
| static |
If this options is set to TRUE, all non-numeric column values are plotted ignoring min_x, max_x, min_y and max_y parameters.
The default value is ‘false’.
Definition at line 232 of file VisualizeImageChart.cs.
◆ POINTCOLOR
| static |
The color of points in the plot represented as a hexadecimal number.
The default value is ‘0000FF’.
Definition at line 31 of file VisualizeImageChart.cs.
◆ POINTSHAPE
| static |
The shape of points in the plot.
Supported values:
The default value is SQUARE.
Definition at line 80 of file VisualizeImageChart.cs.
◆ POINTSIZE
| static |
The size of points in the plot represented as number of pixels.
The default value is ‘3’.
Definition at line 36 of file VisualizeImageChart.cs.
◆ SCALE_TYPE_X
| static |
Type of x axis scale.
Supported values:
The default value is NONE.
Definition at line 180 of file VisualizeImageChart.cs.
◆ SCALE_TYPE_Y
| static |
Type of y axis scale.
Supported values:
The default value is NONE.
Definition at line 206 of file VisualizeImageChart.cs.
◆ SQUARE
| static |
A constant for the VisualizeImageChartRequest.StyleOptions options.
Definition at line 93 of file VisualizeImageChart.cs.
◆ X_ORDER_BY
| static |
An expression or aggregate expression by which non-numeric x column values are sorted, e.g.
“avg(price) descending”.
Definition at line 152 of file VisualizeImageChart.cs.
◆ Y_ORDER_BY
| static |
An expression or aggregate expression by which non-numeric y column values are sorted, e.g.
“avg(price)”, which defaults to “avg(price) ascending”.
Definition at line 157 of file VisualizeImageChart.cs.
The documentation for this struct was generated from the following files:
- _build/public-os_ubuntu24.04-arch_amd64-cc_gcc_13.3.0/install/Kinetica/Protocol/VisualizeImageChart.cs
- Kinetica/Protocol/VisualizeImageChart.cs