Background value of scatter plot

4 views (last 30 days)
YongHyun
YongHyun on 17 Jul 2016
Commented: John BG on 18 Jul 2016
In this plot, the bottom of colorbar is white to present as white color in background of scatter plot. Colors of scatter plot mean the point density. In this situation, I want to change the bottom of colorbar as blue (bottom of colormap 'jet') without changes of the background color (I mean white color maintaining.). Also, colorbar has to start from a zero. Thank you in advance.
  1 Comment
John BG
John BG on 18 Jul 2016
it's easier to help if you make the code available. Please attach the lines that plot this graph. Awaiting answer

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 17 Jul 2016
The colorbar shows the colormap that is applied to the data. Since you changed the jet colormap to white so that your 0 data will be white, it will show up as white in the colorbar also. I don't think that playing around with caxis() will help. You could make up your own image and then show that instead of the colorbar if you want. Use repmat() and ind2rgb() to make up a colored ramp, then use imshow() to display it in an axes, then use the position property of the axes to place it beside your main image.
Or you can just make up an image instead of a scatterplot and display that, which is probably easier.

Categories

Find more on Colormaps in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!