|
Kinetica C# API
Version 7.2.3.1
|
A set of parameters for Kinetica.visualizeImageChart. More...
Inheritance diagram for VisualizeImageChartRequest:
Collaboration diagram for VisualizeImageChartRequest:Classes | |
| struct | Options |
| A set of string constants for the parameter options. More... | |
| struct | StyleOptions |
| A set of string constants for the parameter style_options. More... | |
Public Member Functions | |
| VisualizeImageChartRequest () | |
| Constructs a VisualizeImageChartRequest object with default parameters. More... | |
| 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. More... | |
Public Member Functions inherited from 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, in [schema_name. More... | |
| IList< string > | x_column_names = new List<string>() [get, set] |
| Names of the columns containing the data mapped to the x axis of a chart. More... | |
| IList< string > | y_column_names = new List<string>() [get, set] |
| Names of the columns 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 = new Dictionary<string, IList<string>>() [get, set] |
| Rendering style options for a chart. More... | |
| IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
| Optional parameters. More... | |
Properties inherited from KineticaData | |
| Schema | Schema [get] |
| Avro Schema for this class More... | |
Properties inherited from Avro.Specific.ISpecificRecord | |
| Schema | Schema [get] |
Additional Inherited Members | |
Static Public Member Functions inherited from KineticaData | |
| static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
| Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.visualizeImageChart.
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 image_data field.
Definition at line 21 of file VisualizeImageChart.cs.
|
inline |
Constructs a VisualizeImageChartRequest object with default parameters.
Definition at line 479 of file VisualizeImageChart.cs.
|
inline |
Constructs a VisualizeImageChartRequest object with the specified parameters.
| table_name | Name of the table containing the data to be drawn as a chart, in [schema_name.]table_name format, using standard name resolution rules. |
| x_column_names | Names of the columns containing the data mapped to the x axis of a chart. |
| y_column_names | Names of the columns containing the data mapped to the y axis of a chart. |
| min_x | 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. |
| max_x | 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. |
| min_y | 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. |
| max_y | 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. |
| width | Width of the generated image in pixels. |
| height | Height of the generated image in pixels. |
| bg_color | Background color of the generated image. |
| style_options | Rendering style options for a chart.
|
| options | Optional parameters.
|
Definition at line 715 of file VisualizeImageChart.cs.
|
getset |
Background color of the generated image.
Definition at line 263 of file VisualizeImageChart.cs.
|
getset |
Height of the generated image in pixels.
Definition at line 260 of file VisualizeImageChart.cs.
|
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 244 of file VisualizeImageChart.cs.
|
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 254 of file VisualizeImageChart.cs.
|
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 239 of file VisualizeImageChart.cs.
|
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 249 of file VisualizeImageChart.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 475 of file VisualizeImageChart.cs.
|
getset |
Rendering style options for a chart.
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'. 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 447 of file VisualizeImageChart.cs.
|
getset |
Name of the table containing the data to be drawn as a chart, in [schema_name.
]table_name format, using standard name resolution rules.
Definition at line 226 of file VisualizeImageChart.cs.
|
getset |
Width of the generated image in pixels.
Definition at line 257 of file VisualizeImageChart.cs.
|
getset |
Names of the columns containing the data mapped to the x axis of a chart.
Definition at line 230 of file VisualizeImageChart.cs.
|
getset |
Names of the columns containing the data mapped to the y axis of a chart.
Definition at line 234 of file VisualizeImageChart.cs.