Skip to main content

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

const string kinetica.VisualizeImageChartRequest.StyleOptions.CB_DELIMITER = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.CB_POINTCOLORS = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.CB_POINTSHAPES = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.CB_POINTSIZES = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.CIRCLE = “circle”
static

A constant for the VisualizeImageChartRequest.StyleOptions options.

Definition at line 88 of file VisualizeImageChart.cs.

◆ DIAMOND

const string kinetica.VisualizeImageChartRequest.StyleOptions.DIAMOND = “diamond”
static

A constant for the VisualizeImageChartRequest.StyleOptions options.

Definition at line 98 of file VisualizeImageChart.cs.

◆ HOLLOWCIRCLE

const string kinetica.VisualizeImageChartRequest.StyleOptions.HOLLOWCIRCLE = “hollowcircle”
static

A constant for the VisualizeImageChartRequest.StyleOptions options.

Definition at line 103 of file VisualizeImageChart.cs.

◆ HOLLOWDIAMOND

const string kinetica.VisualizeImageChartRequest.StyleOptions.HOLLOWDIAMOND = “hollowdiamond”
static

A constant for the VisualizeImageChartRequest.StyleOptions options.

Definition at line 113 of file VisualizeImageChart.cs.

◆ HOLLOWSQUARE

const string kinetica.VisualizeImageChartRequest.StyleOptions.HOLLOWSQUARE = “hollowsquare”
static

A constant for the VisualizeImageChartRequest.StyleOptions options.

Definition at line 108 of file VisualizeImageChart.cs.

◆ JITTER_X

const string kinetica.VisualizeImageChartRequest.StyleOptions.JITTER_X = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.JITTER_Y = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.LOG = “log”
static

A base-10 log scale is applied to the y axis.

Definition at line 183 of file VisualizeImageChart.cs.

◆ MIN_MAX_SCALED

const string kinetica.VisualizeImageChartRequest.StyleOptions.MIN_MAX_SCALED = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.NONE = “none”
static

No scale is applied to the y axis.

Definition at line 83 of file VisualizeImageChart.cs.

◆ PLOT_ALL

const string kinetica.VisualizeImageChartRequest.StyleOptions.PLOT_ALL = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.POINTCOLOR = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.POINTSHAPE = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.POINTSIZE = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.SCALE_TYPE_X = “scale_type_x”
static

Type of x axis scale.

Supported values:

  • NONE: No scale is applied to the x axis.
  • LOG: A base-10 log scale is applied to the x axis.

The default value is NONE.

Definition at line 180 of file VisualizeImageChart.cs.

◆ SCALE_TYPE_Y

const string kinetica.VisualizeImageChartRequest.StyleOptions.SCALE_TYPE_Y = “scale_type_y”
static

Type of y axis scale.

Supported values:

  • NONE: No scale is applied to the y axis.
  • LOG: A base-10 log scale is applied to the y axis.

The default value is NONE.

Definition at line 206 of file VisualizeImageChart.cs.

◆ SQUARE

const string kinetica.VisualizeImageChartRequest.StyleOptions.SQUARE = “square”
static

A constant for the VisualizeImageChartRequest.StyleOptions options.

Definition at line 93 of file VisualizeImageChart.cs.

◆ X_ORDER_BY

const string kinetica.VisualizeImageChartRequest.StyleOptions.X_ORDER_BY = “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

const string kinetica.VisualizeImageChartRequest.StyleOptions.Y_ORDER_BY = “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: