Is there any way to specify the colors of the candle?
I believe the candle has colors of green, white, red as a default setting.
I'd like to change those colors, and also can I remove a shadow of the candle?
Thank you in advance.
Search found 4 matches
- Fri Nov 08, 2013 6:04 am
- Forum: JavaScript / HTML5
- Topic: How to specify the color of candles.
- Replies: 1
- Views: 8387
- Wed Nov 06, 2013 10:36 am
- Forum: JavaScript / HTML5
- Topic: Adding data to CandleChart(OHLC) for TeeChart(Javascript/HTM
- Replies: 4
- Views: 13793
Re: Adding data to CandleChart(OHLC) for TeeChart(Javascript/HTM
Is there any way that I can add dates as bottom labels instead of index? I put the date like the below code, but I can not use the tooltip once I put those dates as bottom labes. var dates = []; for(var i =0 ; i<json.length; i++){ ohlc.add(json[i].OPEN, json[i].CLOSE, json[i].HIGH, json[i].LOW); dat...
- Tue Nov 05, 2013 2:10 am
- Forum: JavaScript / HTML5
- Topic: Adding data to CandleChart(OHLC) for TeeChart(Javascript/HTM
- Replies: 4
- Views: 13793
Re: Adding data to CandleChart(OHLC) for TeeChart(Javascript/HTM
I forgot to add a date parameter.
I believe the function might be like this
-> new Tee.Candle(new Date(), open, high, low, close).
I believe the function might be like this
-> new Tee.Candle(new Date(), open, high, low, close).
- Fri Nov 01, 2013 2:45 pm
- Forum: JavaScript / HTML5
- Topic: Adding data to CandleChart(OHLC) for TeeChart(Javascript/HTM
- Replies: 4
- Views: 13793
Adding data to CandleChart(OHLC) for TeeChart(Javascript/HTM
I'm trying to draw a CandleStick chart for a TeeChart JavaScript Version. However I only found the below demo. I'd like to find out how to add series(data) instead of using a addRandom() method. a addRandom() does not explain how to add a actual data. I believe it could be something like this new Te...