سؤال

I'm working on candlesticks (highStock). Is there any function through which I can change color of individual candlesticks based on Open/close values ? by default it gives blue and white color, i.e. if opening values are greater then closing values then color will be blues , and if closing value is greater then opening values then color will be white. but i want to apply green and red color instead on blue and white. also i want to apply white color if the closing price is same as opening. any help will be highly appreciated. Thanks in Advance ;)

هل كانت مفيدة؟

المحلول

You can find your answer from the below link:

Highstock Docs for candlestick chart

JSFIDDLE DEMO

Code:

plotOptions: {
    candlestick: {
        color: 'red',
        upColor: 'green'
    }
},
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top