options = {
legend: 'none',
bar: { groupWidth: '90%' }, // Remove space between bars.
candlestick: {
hollowIsRising : false,
fallingColor: { strokeWidth: 2, stroke: '#a52714', fill: '#a52714' }, // red
risingColor: { strokeWidth: 2, stroke: '#0f9d58', fill: '#0f9d58' } // green
}
};
... but i'm not able to configure the following part of the candle (low and high values), those are shown as blue all the time, I would like to have the same color than the stroke or the body of the candle, is that possible?
Thanks!