Skip to content

Commit

Permalink
Remove OHLC charttype, XY will be used instead.
Browse files Browse the repository at this point in the history
  • Loading branch information
niloc132 committed Oct 12, 2022
1 parent e582a42 commit 1127266
Show file tree
Hide file tree
Showing 6 changed files with 509 additions and 501 deletions.
2 changes: 1 addition & 1 deletion Plot/src/main/java/io/deephaven/plot/AxesImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ private void configurePiePlot() {

private void configureOHLCPlot() {
this.setDimension(2);
chart.setChartType(ChartType.OHLC);
chart.setChartType(ChartType.XY);
xAxis().setType(AxisImpl.Type.NUMBER);
yAxis().setType(AxisImpl.Type.NUMBER);
initialize();
Expand Down
3 changes: 3 additions & 0 deletions Plot/src/main/java/io/deephaven/plot/ChartType.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ public enum ChartType {

/**
* Open-high-low-close chart.
* <p></p>
* Deprecated, use XY instead.
*/
@Deprecated(since = "0.18", forRemoval = true)
OHLC,

/**
Expand Down
Loading

0 comments on commit 1127266

Please sign in to comment.