I am trying to customize candlecharts from google charts.
I have found how to change the color of the candle themselves, but not the one of the line indicating the highest and lowest value:
Those are the options I provided:
let options = {
legend: 'none',
candlestick: {
risingColor: {stroke: '#4CAF50', fill: 'white'},
fallingColor: {stroke: '#F44336'}
}
}
You can try it on this jsFiddle: https://jsfiddle.net/El_Matella/h5p36t3w/2/
I can't find in the documentation how to change it, does someone have an idea? (https://developers.google.com/chart/interactive/docs/gallery/candlestickchart)