How can the lines of a waterfall plot be made thicker in order to be better visible?

28 views (last 30 days)
I've tried saving this graph as .svg or .eps to make it look better in my presentation. However, it always looks scaled back so far that the lines are grainy. Is there any way to remedy this?
I'm looking for a way to either get wider lines or a better format to save the plot under.

Answers (2)

Star Strider
Star Strider on 17 Apr 2017
The documentation for waterfall suggests that altering its properties is difficult.
Unless you absolutely have to use a waterfall plot, I would use a ribbon (link) plot. You will still have to change some of its properties to get the result you want, but it’s much easier to do with the ribbon function.

Jacob Miske
Jacob Miske on 10 May 2019
Try using a method like this
"field_temperatures" is a n x n matrix with floating point values
%waterfall display
h=waterfall(field_temperatures)
set(h,'LineWidth',5) %makes lines thicker

Categories

Find more on Line Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!