Uses of Class
org.knowm.xchart.OHLCSeries
Packages that use OHLCSeries
-
Uses of OHLCSeries in org.knowm.xchart
Subclasses with type arguments of type OHLCSeries in org.knowm.xchartMethods in org.knowm.xchart that return OHLCSeriesModifier and TypeMethodDescriptionAdd a series for a Line type chart using double arraysOHLCChart.addSeries(String seriesName, double[] openData, double[] highData, double[] lowData, double[] closeData) Add a series for a OHLC type chart using using double arraysOHLCChart.addSeries(String seriesName, double[] xData, double[] openData, double[] highData, double[] lowData, double[] closeData) OHLCChart.addSeries(String seriesName, double[] xData, double[] openData, double[] highData, double[] lowData, double[] closeData, long[] volumeData) Add a series for a OHLC type chart using using double arraysprivate OHLCSeriesOHLCChart.addSeries(String seriesName, double[] xData, double[] openData, double[] highData, double[] lowData, double[] closeData, long[] volumeData, Series.DataType dataType) private OHLCSeriesOHLCChart.addSeries(String seriesName, double[] xData, double[] yData, Series.DataType dataType) Add a series for a Line type chart using float arraysOHLCChart.addSeries(String seriesName, float[] openData, float[] highData, float[] lowData, float[] closeData) Add a series for a OHLC type chart using using float arraysOHLCChart.addSeries(String seriesName, float[] xData, float[] openData, float[] highData, float[] lowData, float[] closeData) Add a series for a OHLC type chart using using float arraysOHLCChart.addSeries(String seriesName, float[] xData, float[] openData, float[] highData, float[] lowData, float[] closeData, float[] volumeData) Add a series for a OHLC type chart using using float arraysAdd a series for a Line type chart using int arraysOHLCChart.addSeries(String seriesName, int[] openData, int[] highData, int[] lowData, int[] closeData) Add a series for a OHLC type chart using using int arraysOHLCChart.addSeries(String seriesName, int[] xData, int[] openData, int[] highData, int[] lowData, int[] closeData) Add a series for a OHLC type chart using using int arraysOHLCChart.addSeries(String seriesName, int[] xData, int[] openData, int[] highData, int[] lowData, int[] closeData, int[] volumeData) Add a series for a OHLC type chart using using int arraysAdd a series for a Line type chart using ListsOHLCChart.addSeries(String seriesName, List<?> xData, List<? extends Number> openData, List<? extends Number> highData, List<? extends Number> lowData, List<? extends Number> closeData) Add a series for a OHLC type chart using ListsOHLCChart.addSeries(String seriesName, List<?> xData, List<? extends Number> openData, List<? extends Number> highData, List<? extends Number> lowData, List<? extends Number> closeData, List<? extends Number> volumeData) Add a series for a OHLC type chart using ListsOHLCChart.addSeries(String seriesName, List<? extends Number> openData, List<? extends Number> highData, List<? extends Number> lowData, List<? extends Number> closeData) Add a series for a OHLC type chart using ListsOHLCSeries.setDownColor(Color color) Set the down color of the seriesOHLCSeries.setOhlcSeriesRenderStyle(OHLCSeries.OHLCSeriesRenderStyle ohlcSeriesRenderStyle) OHLCSeries.setUpColor(Color color) Set the up color of the seriesOHLCChart.updateOHLCSeries(String seriesName, double[] newXData, double[] newYData) Update a series by updating the X-Axis and Y-Axis dataOHLCChart.updateOHLCSeries(String seriesName, double[] newXData, double[] newOpenData, double[] newHighData, double[] newLowData, double[] newCloseData) Update a series by updating the xData, openData, highData, lowData and closeDataOHLCChart.updateOHLCSeries(String seriesName, double[] newXData, double[] newOpenData, double[] newHighData, double[] newLowData, double[] newCloseData, long[] newVolumeData) Update a series by updating the xData, openData, highData, lowData,closeData and volumeDataOHLCChart.updateOHLCSeries(String seriesName, List<?> newXData, List<? extends Number> newYData) Update a series by updating the X-Axis and Y-Axis dataOHLCChart.updateOHLCSeries(String seriesName, List<?> newXData, List<? extends Number> newOpenData, List<? extends Number> newHighData, List<? extends Number> newLowData, List<? extends Number> newCloseData) Update a series by updating the xData, openData, highData, lowData and closeDataOHLCChart.updateOHLCSeries(String seriesName, List<?> newXData, List<? extends Number> newOpenData, List<? extends Number> newHighData, List<? extends Number> newLowData, List<? extends Number> newCloseData, List<? extends Number> volumeData) -
Uses of OHLCSeries in org.knowm.xchart.internal.chartpart
Classes in org.knowm.xchart.internal.chartpart with type parameters of type OHLCSeriesModifier and TypeClassDescriptionclassLegend_OHLC<ST extends OHLCStyler, S extends OHLCSeries>classPlot_OHLC<ST extends AxesChartStyler, S extends OHLCSeries>classPlotContent_OHLC<ST extends AxesChartStyler, S extends OHLCSeries>