7 using System.Collections.Generic;
262 public const string NONE =
"none";
335 public const string LOG =
"log";
608 public IDictionary<string, IList<string>>
style_options {
get;
set; } =
new Dictionary<string, IList<string>>();
612 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
845 IDictionary<string, string>
options = null)
847 this.table_name = table_name ??
"";
848 this.x_column_names = x_column_names ??
new List<string>();
849 this.y_column_names = y_column_names ??
new List<string>();
856 this.bg_color = bg_color ??
"";
858 this.
options = options ??
new Dictionary<string, string>();
907 public const string SORTED_X_VALUES =
"sorted_x_values";
911 public const string LOCATION_X =
"location_x";
915 public const string SORTED_Y_VALUES =
"sorted_y_values";
919 public const string LOCATION_Y =
"location_y";
956 public byte[] image_data {
get;
set; }
987 public IDictionary<string, IList<string>> axes_info {
get;
set; } =
new Dictionary<string, IList<string>>();
const string LOG
A base-10 log scale is applied to the y axis.
const string MIN_MAX_SCALED
If this options is set to "false", this endpoint expects request's min/max values are not yet scaled...
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,IList<string>,IList<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-numeric x column values.
IList< string > y_column_names
Names of the columns containing the data mapped to the y axis of a chart.
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-numeric y column values.
VisualizeImageChartRequest(string table_name, IList< string > x_column_names, IList< string > y_column_names, 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.
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.
IDictionary< string, string > options
Optional parameters.
const string SCALE_TYPE_Y
Type of y axis scale.
Rendering style options for a chart.
IList< string > x_column_names
Names of the columns containing the data mapped to the x axis of 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 SCALE_TYPE_X
Type of x axis scale.
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
const string NONE
No scale is applied to the y axis.
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,IList<string>,IList<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