Line chart (curved line) problems

0
In the pictures below you can see that the line get interrupted when a it goes to the lowest value, and when it reaches a maximum value.   Is there a way to solve this? (by e.g. setting max value to highest value +1).
asked
1 answers
0

I think you can achieve this by setting the right margins in the layout advanced tab:

f.e.

margin: {
    l: 50,
    r: 50,
    b: 100,
    t: 100,
    pad: 4
  },

https://plot.ly/javascript/setting-graph-size/

answered