|
Kinetica C# API
Version 7.2.3.1
|
A set of parameters for Kinetica.insertSymbol. More...
Inheritance diagram for InsertSymbolRequest:
Collaboration diagram for InsertSymbolRequest:Classes | |
| struct | Options |
| A set of string constants for the parameter options. More... | |
| struct | SymbolFormat |
| A set of string constants for the parameter symbol_format. More... | |
Public Member Functions | |
| InsertSymbolRequest () | |
| Constructs an InsertSymbolRequest object with default parameters. More... | |
| InsertSymbolRequest (string symbol_id, string symbol_format, byte[] symbol_data, IDictionary< string, string > options=null) | |
| Constructs an InsertSymbolRequest 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 | symbol_id [get, set] |
| The id of the symbol being added. More... | |
| string | symbol_format [get, set] |
| Specifies the symbol format. More... | |
| byte [] | symbol_data [get, set] |
| The actual symbol data. 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.insertSymbol.
Adds a symbol or icon (i.e. an image) to represent data points when data is rendered visually. Users must provide the symbol identifier (string), a format (currently supported: 'svg' and 'svg_path'), the data for the symbol, and any additional optional parameter (e.g. color). To have a symbol used for rendering create a table with a string column named 'SYMBOLCODE' (along with 'x' or 'y' for example). Then when the table is rendered (via WMS) if the 'dosymbology' parameter is 'true' then the value of the 'SYMBOLCODE' column is used to pick the symbol displayed for each point.
Definition at line 24 of file InsertSymbol.cs.
|
inline |
Constructs an InsertSymbolRequest object with default parameters.
Definition at line 94 of file InsertSymbol.cs.
|
inline |
Constructs an InsertSymbolRequest object with the specified parameters.
| symbol_id | The id of the symbol being added. This is the same id that should be in the 'SYMBOLCODE' column for objects using this symbol. |
| symbol_format | Specifies the symbol format. Must be either 'svg' or 'svg_path'. Supported values: |
| symbol_data | The actual symbol data. If symbol_format is 'svg' then this should be the raw bytes representing an svg file. If symbol_format is svg path then this should be an svg path string; for example: 'M25.979,12.896,5.979,12.896,5.979,19.562,25.979,19.562z'. |
| options | Optional parameters.
|
Definition at line 131 of file InsertSymbol.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 90 of file InsertSymbol.cs.
|
getset |
The actual symbol data.
If symbol_format is 'svg' then this should be the raw bytes representing an svg file. If symbol_format is svg path then this should be an svg path string; for example: 'M25.979,12.896,5.979,12.896,5.979,19.562,25.979,19.562z'.
Definition at line 75 of file InsertSymbol.cs.
|
getset |
|
getset |
The id of the symbol being added.
This is the same id that should be in the 'SYMBOLCODE' column for objects using this symbol.
Definition at line 54 of file InsertSymbol.cs.