Package org.jCharts.chartData.interfaces
Interface IStockChartDataSet
- All Superinterfaces:
IAxisPlotDataSet,IData,IDataSet,Serializable
- All Known Implementing Classes:
StockChartDataSet
-
Method Summary
Modifier and TypeMethodDescriptionReturns the type of chart this data is to be plotted ondoublegetCloseValue(int index) doublegetHighValue(int index) doublegetLowValue(int index) doublegetOpenValue(int index) booleanbooleanMethods inherited from interface org.jCharts.chartData.interfaces.IAxisPlotDataSet
getNumberOfDataSets, validateMethods inherited from interface org.jCharts.chartData.interfaces.IDataSet
getChartTypeProperties, getLegendLabel, getNumberOfDataItems, getNumberOfLegendLabels, getPaint
-
Method Details
-
getChartType
ChartType getChartType()Returns the type of chart this data is to be plotted on- Specified by:
getChartTypein interfaceIAxisPlotDataSet- Returns:
- ChartType
-
getHighValue
double getHighValue(int index) - Parameters:
index-- Returns:
- double
-
getLowValue
double getLowValue(int index) - Parameters:
index-- Returns:
- double
-
getCloseValue
double getCloseValue(int index) - Parameters:
index-- Returns:
- double
-
hasCloseValues
boolean hasCloseValues()- Parameters:
boolean-
-
getOpenValue
double getOpenValue(int index) - Parameters:
index-- Returns:
- double
-
hasOpenValues
boolean hasOpenValues()- Parameters:
boolean-
-