Kinetica C# API  Version 6.1.0.0
kinetica.VisualizeImageChartRequest Class Reference

A set of parameters for Kinetica.visualizeImageChart(string,string,string,double,double,double,double,int,int,string,IDictionary<string, IList<string>>,IDictionary<string, string>). More...

+ Inheritance diagram for kinetica.VisualizeImageChartRequest:
+ Collaboration diagram for kinetica.VisualizeImageChartRequest:

Classes

struct  StyleOptions
 Rendering style options for a chart. More...
 

Public Member Functions

 VisualizeImageChartRequest ()
 Constructs a VisualizeImageChartRequest object with default parameters. More...
 
 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. More...
 
- Public Member Functions inherited from kinetica.KineticaData
 KineticaData (KineticaType type)
 Constructor from Kinetica Type More...
 
 KineticaData (System.Type type=null)
 Default constructor, with optional System.Type More...
 
object Get (int fieldPos)
 Retrieve a specific property from this object More...
 
void Put (int fieldPos, object fieldValue)
 Write a specific property to this object More...
 

Properties

string table_name [get, set]
 Name of the table containing the data to be drawn as a chart. More...
 
string x_column_name [get, set]
 Name of the column containing the data mapped to the x axis of a chart. More...
 
string y_column_name [get, set]
 Name of the column containing the data mapped to the y axis of a chart. More...
 
double min_x [get, set]
 Lower bound for the x column values. More...
 
double max_x [get, set]
 Upper bound for the x column values. More...
 
double min_y [get, set]
 Lower bound for the y column values. More...
 
double max_y [get, set]
 Upper bound for the y column values. More...
 
int width [get, set]
 Width of the generated image in pixels. More...
 
int height [get, set]
 Height of the generated image in pixels. More...
 
string bg_color [get, set]
 Background color of the generated image. More...
 
IDictionary< string, IList< string > > style_options [get, set]
 Rendering style options for a chart. More...
 
IDictionary< string, string > options = new Dictionary<string, IList<string>>() [get, set]
 Optional parameters. More...
 
- Properties inherited from kinetica.KineticaData
Schema Schema [get]
 Avro Schema for this class More...
 

Additional Inherited Members

- Static Public Member Functions inherited from kinetica.KineticaData
static RecordSchema SchemaFromType (System.Type t, KineticaType ktype=null)
 Create an Avro Schema from a System.Type and a KineticaType. More...
 

Detailed Description

A set of parameters for Kinetica.visualizeImageChart(string,string,string,double,double,double,double,int,int,string,IDictionary<string, IList<string>>,IDictionary<string, string>).


Scatter plot is the only plot type currently supported. A non-numeric column can be specified as x or y column and jitters can be added to them to avoid excessive overlapping. All color values must be in the format RRGGBB or AARRGGBB (to specify the alpha value). The image is contained in the <member name="image_data"> field.

Definition at line 24 of file VisualizeImageChart.cs.

Constructor & Destructor Documentation

◆ VisualizeImageChartRequest() [1/2]

kinetica.VisualizeImageChartRequest.VisualizeImageChartRequest ( )
inline

Constructs a VisualizeImageChartRequest object with default parameters.

Definition at line 443 of file VisualizeImageChart.cs.

◆ VisualizeImageChartRequest() [2/2]

kinetica.VisualizeImageChartRequest.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 
)
inline

Constructs a VisualizeImageChartRequest object with the specified parameters.

Parameters
table_nameName of the table containing the data to be drawn as a chart.
x_column_nameName of the column containing the data mapped to the x axis of a chart.
y_column_nameName of the column containing the data mapped to the y axis of a chart.
min_xLower bound for the x column values. For non-numeric x column, each x column item is mapped to an integral value starting from 0.
max_xUpper bound for the x column values. For non-numeric x column, each x column item is mapped to an integral value starting from 0.
min_yLower bound for the y column values. For non-numeric y column, each y column item is mapped to an integral value starting from 0.
max_yUpper bound for the y column values. For non-numeric y column, each y column item is mapped to an integral value starting from 0.
widthWidth of the generated image in pixels.
heightHeight of the generated image in pixels.
bg_colorBackground color of the generated image.
style_optionsRendering style options for a chart.
  • POINTCOLOR: The color of points in the plot represented as a hexadecimal number.
  • POINTSIZE: The size of points in the plot represented as number of pixels.
  • POINTSHAPE: The shape of points in the plot. Supported values: The default value is SQUARE.
  • CB_POINTCOLORS: 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"}.
  • CB_POINTSIZES: 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"}.
  • CB_POINTSHAPES: 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"}.
  • CB_DELIMITER: A character or string which separates per-class values in a class-break style option string.
  • X_ORDER_BY: An expression or aggregate expression by which non-numeric x column values are sorted, e.g. "avg(price) descending".
  • Y_ORDER_BY: An expression or aggregate expression by which non-numeric y column values are sorted, e.g. "avg(price)", which defaults to "avg(price) ascending".
  • JITTER_X: Amplitude of horizontal jitter applied to non-numaric x column values.
  • JITTER_Y: Amplitude of vertical jitter applied to non-numaric y column values.
  • 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.
optionsOptional parameters.

Definition at line 601 of file VisualizeImageChart.cs.

Property Documentation

◆ bg_color

string kinetica.VisualizeImageChartRequest.bg_color
getset

Background color of the generated image.

Definition at line 306 of file VisualizeImageChart.cs.

◆ height

int kinetica.VisualizeImageChartRequest.height
getset

Height of the generated image in pixels.

Definition at line 303 of file VisualizeImageChart.cs.

◆ max_x

double kinetica.VisualizeImageChartRequest.max_x
getset

Upper bound for the x column values.

For non-numeric x column, each x column item is mapped to an integral value starting from 0.

Definition at line 287 of file VisualizeImageChart.cs.

◆ max_y

double kinetica.VisualizeImageChartRequest.max_y
getset

Upper bound for the y column values.

For non-numeric y column, each y column item is mapped to an integral value starting from 0.

Definition at line 297 of file VisualizeImageChart.cs.

◆ min_x

double kinetica.VisualizeImageChartRequest.min_x
getset

Lower bound for the x column values.

For non-numeric x column, each x column item is mapped to an integral value starting from 0.

Definition at line 282 of file VisualizeImageChart.cs.

◆ min_y

double kinetica.VisualizeImageChartRequest.min_y
getset

Lower bound for the y column values.

For non-numeric y column, each y column item is mapped to an integral value starting from 0.

Definition at line 292 of file VisualizeImageChart.cs.

◆ options

IDictionary<string, string> kinetica.VisualizeImageChartRequest.options = new Dictionary<string, IList<string>>()
getset

Optional parameters.

Definition at line 438 of file VisualizeImageChart.cs.

◆ style_options

IDictionary<string, IList<string> > kinetica.VisualizeImageChartRequest.style_options
getset

Rendering style options for a chart.

  • POINTCOLOR: The color of points in the plot represented as a hexadecimal number.
  • POINTSIZE: The size of points in the plot represented as number of pixels.
  • POINTSHAPE: The shape of points in the plot. Supported values: The default value is SQUARE.
  • CB_POINTCOLORS: 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"}.
  • CB_POINTSIZES: 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"}.
  • CB_POINTSHAPES: 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"}.
  • CB_DELIMITER: A character or string which separates per-class values in a class-break style option string.
  • X_ORDER_BY: An expression or aggregate expression by which non-numeric x column values are sorted, e.g. "avg(price) descending".
  • Y_ORDER_BY: An expression or aggregate expression by which non-numeric y column values are sorted, e.g. "avg(price)", which defaults to "avg(price) ascending".
  • JITTER_X: Amplitude of horizontal jitter applied to non-numaric x column values.
  • JITTER_Y: Amplitude of vertical jitter applied to non-numaric y column values.
  • 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.

Definition at line 435 of file VisualizeImageChart.cs.

◆ table_name

string kinetica.VisualizeImageChartRequest.table_name
getset

Name of the table containing the data to be drawn as a chart.

Definition at line 269 of file VisualizeImageChart.cs.

◆ width

int kinetica.VisualizeImageChartRequest.width
getset

Width of the generated image in pixels.

Definition at line 300 of file VisualizeImageChart.cs.

◆ x_column_name

string kinetica.VisualizeImageChartRequest.x_column_name
getset

Name of the column containing the data mapped to the x axis of a chart.

Definition at line 273 of file VisualizeImageChart.cs.

◆ y_column_name

string kinetica.VisualizeImageChartRequest.y_column_name
getset

Name of the column containing the data mapped to the y axis of a chart.

Definition at line 277 of file VisualizeImageChart.cs.


The documentation for this class was generated from the following file: