7 using System.Collections.Generic;
202 public const string NONE =
"none";
435 public IDictionary<string, IList<string>>
style_options {
get;
set; } =
new Dictionary<string, IList<string>>();
438 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
612 IDictionary<string, string>
options = null)
614 this.table_name = table_name ??
"";
615 this.x_column_name = x_column_name ??
"";
616 this.y_column_name = y_column_name ??
"";
623 this.bg_color = bg_color ??
"";
625 this.
options = options ??
new Dictionary<string, string>();
674 public const string SORTED_X_VALUES =
"sorted_x_values";
678 public const string LOCATION_X =
"location_x";
682 public const string SORTED_Y_VALUES =
"sorted_y_values";
686 public const string LOCATION_Y =
"location_y";
723 public byte[] image_data {
get;
set; }
754 public IDictionary<string, IList<string>> axes_info {
get;
set; } =
new Dictionary<string, IList<string>>();
string x_column_name
Name of the column containing the data mapped to the x axis of a chart.
int height
Height of the generated image in pixels.
const string HOLLOWSQUARE
const string CB_POINTCOLORS
Point color class break information consisting of three entries: class-break attribute, class-break values/ranges, and point color values.
A set of results returned by Kinetica.visualizeImageChart(string,string,string,double,double,double,double,int,int,string,IDictionary<string, IList<string>>,IDictionary<string, string>).
const string POINTSHAPE
The shape of points in the plot.
IDictionary< string, IList< string > > style_options
Rendering style options for a chart.
const string JITTER_X
Amplitude of horizontal jitter applied to non-numaric x column values.
int width
Width of the generated image in pixels.
double min_x
Lower bound for the x column values.
const string POINTCOLOR
The color of points in the plot represented as a hexadecimal number.
const string JITTER_Y
Amplitude of vertical jitter applied to non-numaric y column values.
VisualizeImageChartRequest()
Constructs a VisualizeImageChartRequest object with default parameters.
Information returned for drawing labels for the axes associated with non-numeric columns.
double min_y
Lower bound for the y column values.
double max_y
Upper bound for the y column values.
VisualizeImageChartRequest(string table_name, string x_column_name, string y_column_name, double min_x, double max_x, double min_y, double max_y, int width, int height, string bg_color, IDictionary< string, IList< string >> style_options, IDictionary< string, string > options=null)
Constructs a VisualizeImageChartRequest object with the specified parameters.
string y_column_name
Name of the column containing the data mapped to the y axis of a chart.
IDictionary< string, string > options
Optional parameters.
Rendering style options for a chart.
double max_x
Upper bound for the x column values.
const string CB_POINTSHAPES
Point shape class break information consisting of three entries: class-break attribute, class-break values/ranges, and point shape names.
const string PLOT_ALL
If this options is set to "true", all non-numeric column values are plotted ignoring min_x...
const string POINTSIZE
The size of points in the plot represented as number of pixels.
const string HOLLOWCIRCLE
string bg_color
Background color of the generated image.
const string Y_ORDER_BY
An expression or aggregate expression by which non-numeric y column values are sorted, e.g.
KineticaData - class to help with Avro Encoding for Kinetica
const string CB_DELIMITER
A character or string which separates per-class values in a class-break style option string...
A set of parameters for Kinetica.visualizeImageChart(string,string,string,double,double,double,double,int,int,string,IDictionary<string, IList<string>>,IDictionary<string, string>).
string table_name
Name of the table containing the data to be drawn as a chart.
const string CB_POINTSIZES
Point size class break information consisting of three entries: class-break attribute, class-break values/ranges, and point size values.
const string X_ORDER_BY
An expression or aggregate expression by which non-numeric x column values are sorted, e.g.
const string HOLLOWDIAMOND