com.xxdb.data.Chart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-java Show documentation
Show all versions of api-java Show documentation
The messaging and data conversion protocol between Java and DolphinDB server
package com.xxdb.data;
/**
*
* Interface for chart object
*
*/
public interface Chart extends Dictionary{
enum CHART_TYPE {CT_AREA, CT_BAR, CT_COLUMN, CT_HISTOGRAM, CT_LINE, CT_PIE, CT_SCATTER, CT_TREND, CT_KLINE};
CHART_TYPE getChartType() throws Exception;
Matrix getData() throws Exception;
String getTitle();
String getXAxisName();
String getYAxisName();
}