custom plot color #177
-
Hi, is there a way to provide a custom color function on scatter plot? something like colorfunc on candlestick_ochl? Thank you |
Beta Was this translation helpful? Give feedback.
Answered by
highfestiva
May 4, 2021
Replies: 1 comment 1 reply
-
Unfortunately not, it's the same as with line plots. You'll have to create a new scatter plot for each color you want displayed. If you have ten colors, you'll have to use ten plots. You could easily wrap them in a function of your own, and just loop over each color and plot. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ebucis
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unfortunately not, it's the same as with line plots. You'll have to create a new scatter plot for each color you want displayed. If you have ten colors, you'll have to use ten plots. You could easily wrap them in a function of your own, and just loop over each color and plot.