Is there a way to hide all default text on a IOhlcChartObject object with a single line?
I can do that with the following code, but would be more elegant a simple line...
IOhlcChartObject ohlc;
ohlc = myChart.getChartObjectFactory().createOhlcInformer();
ohlc.setParamVisibility(CandleInfoParams.DATE, false);
ohlc.setParamVisibility(CandleInfoParams.TIME, false);
ohlc.setParamVisibility(CandleInfoParams.OPEN, false);
ohlc.setParamVisibility(CandleInfoParams.HIGH, false);
ohlc.setParamVisibility(CandleInfoParams.LOW, false);
ohlc.setParamVisibility(CandleInfoParams.CLOSE, false);
ohlc.setParamVisibility(CandleInfoParams.VOL, false);
ohlc.setParamVisibility(CandleInfoParams.INDEX, false);
ohlc.setParamVisibility(TickInfoParams.DATE, false);
ohlc.setParamVisibility(TickInfoParams.TIME, false);
ohlc.setParamVisibility(TickInfoParams.ASK, false);
ohlc.setParamVisibility(TickInfoParams.BID, false);
ohlc.setParamVisibility(TickInfoParams.ASK_VOL, false);
ohlc.setParamVisibility(TickInfoParams.BID_VOL, false);
ohlc.setParamVisibility(PriceAgregatedInfoParams.DATE, false);
ohlc.setParamVisibility(PriceAgregatedInfoParams.START_TIME, false);
ohlc.setParamVisibility(PriceAgregatedInfoParams.END_TIME, false);
ohlc.setParamVisibility(PriceAgregatedInfoParams.OPEN, false);
ohlc.setParamVisibility(PriceAgregatedInfoParams.HIGH, false);
ohlc.setParamVisibility(PriceAgregatedInfoParams.LOW, false);
ohlc.setParamVisibility(PriceAgregatedInfoParams.CLOSE, false);
ohlc.setParamVisibility(PriceAgregatedInfoParams.VOL, false);
ohlc.setParamVisibility(PriceAgregatedInfoParams.INDEX, false);