◆ visualizeImageChart() [1/4]
| VisualizeImageChartResponse gpudb::GPUdb::visualizeImageChart | ( | const std::string & | tableName, |
| const std::vector< std::string > & | xColumnNames, | ||
| const std::vector< std::string > & | yColumnNames, | ||
| const double | minX, | ||
| const double | maxX, | ||
| const double | minY, | ||
| const double | maxY, | ||
| const int32_t | width, | ||
| const int32_t | height, | ||
| const std::string & | bgColor, | ||
| const std::map< std::string, std::vector< std::string > > & | styleOptions, | ||
| const std::map< std::string, std::string > & | options ) const |
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 imageData field.
| [in] | tableName | Name of the table containing the data to be drawn as a chart, in [schema_name.]table_name format, using standard name resolution rules. |
| [in] | xColumnNames | Names of the columns containing the data mapped to the x axis of a chart. |
| [in] | yColumnNames | Names of the columns containing the data mapped to the y axis of a chart. |
| [in] | minX | 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. |
| [in] | maxX | 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. |
| [in] | minY | 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. |
| [in] | maxY | 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. |
| [in] | width | Width of the generated image in pixels. |
| [in] | height | Height of the generated image in pixels. |
| [in] | bgColor | Background color of the generated image. |
| [in] | styleOptions | Rendering style options for a chart.
|
| [in] | options | Optional parameters.
|
◆ visualizeImageChart() [2/4]
| VisualizeImageChartResponse & gpudb::GPUdb::visualizeImageChart | ( | const std::string & | tableName, |
| const std::vector< std::string > & | xColumnNames, | ||
| const std::vector< std::string > & | yColumnNames, | ||
| const double | minX, | ||
| const double | maxX, | ||
| const double | minY, | ||
| const double | maxY, | ||
| const int32_t | width, | ||
| const int32_t | height, | ||
| const std::string & | bgColor, | ||
| const std::map< std::string, std::vector< std::string > > & | styleOptions, | ||
| const std::map< std::string, std::string > & | options, | ||
| VisualizeImageChartResponse & | response_ ) const |
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 imageData field.
| [in] | tableName | Name of the table containing the data to be drawn as a chart, in [schema_name.]table_name format, using standard name resolution rules. |
| [in] | xColumnNames | Names of the columns containing the data mapped to the x axis of a chart. |
| [in] | yColumnNames | Names of the columns containing the data mapped to the y axis of a chart. |
| [in] | minX | 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. |
| [in] | maxX | 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. |
| [in] | minY | 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. |
| [in] | maxY | 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. |
| [in] | width | Width of the generated image in pixels. |
| [in] | height | Height of the generated image in pixels. |
| [in] | bgColor | Background color of the generated image. |
| [in] | styleOptions | Rendering style options for a chart.
|
| [in] | options | Optional parameters.
|
| [out] | response_ | Response object containing the results of the operation. |
◆ visualizeImageChart() [3/4]
| VisualizeImageChartResponse gpudb::GPUdb::visualizeImageChart | ( | const VisualizeImageChartRequest & | request_ | ) | const |
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 imageData field.
| [in] | request_ | Request object containing the parameters for the operation. |
◆ visualizeImageChart() [4/4]
| VisualizeImageChartResponse & gpudb::GPUdb::visualizeImageChart | ( | const VisualizeImageChartRequest & | request_, |
| VisualizeImageChartResponse & | response_ ) const |
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 imageData field.