HighCharts yAxis too much space around big numbers












2














My current chart



Just started using HighCharts. I'm charting a stock price that fluctautes around $1,598 and $1,601 that fluctuates over the course of a day. The changes are all obviously small - but the price is changing - it should not be a straight line. HighCharts seems to just zoom too far out. I've added the startOnTick: false etc. with no luck so far. Is there anything obvious I might be missing?



Options below:



const options = {
chart: {
height: '150px',
backgroundColor: theme.colors.white02
margin: 0,
spacing: [0, 0, 0, 0]
},
xAxis: {
title: {
text: null
},
labels: {
enabled: false
},
startOnTick: false,
endOnTick: false,
type: 'datetime',
gridLineWidth: 1,
},
yAxis: {
title: {
text: null
},
labels: {
enabled: false
},
startOnTick: false,
minPadding: 10,
maxPadding: 0
},
title: {
text: null
},
legend: {
enabled: false
},
series: [
{
type: 'areaspline',
data: data[0].data,
}
]
};









share|improve this question



























    2














    My current chart



    Just started using HighCharts. I'm charting a stock price that fluctautes around $1,598 and $1,601 that fluctuates over the course of a day. The changes are all obviously small - but the price is changing - it should not be a straight line. HighCharts seems to just zoom too far out. I've added the startOnTick: false etc. with no luck so far. Is there anything obvious I might be missing?



    Options below:



    const options = {
    chart: {
    height: '150px',
    backgroundColor: theme.colors.white02
    margin: 0,
    spacing: [0, 0, 0, 0]
    },
    xAxis: {
    title: {
    text: null
    },
    labels: {
    enabled: false
    },
    startOnTick: false,
    endOnTick: false,
    type: 'datetime',
    gridLineWidth: 1,
    },
    yAxis: {
    title: {
    text: null
    },
    labels: {
    enabled: false
    },
    startOnTick: false,
    minPadding: 10,
    maxPadding: 0
    },
    title: {
    text: null
    },
    legend: {
    enabled: false
    },
    series: [
    {
    type: 'areaspline',
    data: data[0].data,
    }
    ]
    };









    share|improve this question

























      2












      2








      2







      My current chart



      Just started using HighCharts. I'm charting a stock price that fluctautes around $1,598 and $1,601 that fluctuates over the course of a day. The changes are all obviously small - but the price is changing - it should not be a straight line. HighCharts seems to just zoom too far out. I've added the startOnTick: false etc. with no luck so far. Is there anything obvious I might be missing?



      Options below:



      const options = {
      chart: {
      height: '150px',
      backgroundColor: theme.colors.white02
      margin: 0,
      spacing: [0, 0, 0, 0]
      },
      xAxis: {
      title: {
      text: null
      },
      labels: {
      enabled: false
      },
      startOnTick: false,
      endOnTick: false,
      type: 'datetime',
      gridLineWidth: 1,
      },
      yAxis: {
      title: {
      text: null
      },
      labels: {
      enabled: false
      },
      startOnTick: false,
      minPadding: 10,
      maxPadding: 0
      },
      title: {
      text: null
      },
      legend: {
      enabled: false
      },
      series: [
      {
      type: 'areaspline',
      data: data[0].data,
      }
      ]
      };









      share|improve this question













      My current chart



      Just started using HighCharts. I'm charting a stock price that fluctautes around $1,598 and $1,601 that fluctuates over the course of a day. The changes are all obviously small - but the price is changing - it should not be a straight line. HighCharts seems to just zoom too far out. I've added the startOnTick: false etc. with no luck so far. Is there anything obvious I might be missing?



      Options below:



      const options = {
      chart: {
      height: '150px',
      backgroundColor: theme.colors.white02
      margin: 0,
      spacing: [0, 0, 0, 0]
      },
      xAxis: {
      title: {
      text: null
      },
      labels: {
      enabled: false
      },
      startOnTick: false,
      endOnTick: false,
      type: 'datetime',
      gridLineWidth: 1,
      },
      yAxis: {
      title: {
      text: null
      },
      labels: {
      enabled: false
      },
      startOnTick: false,
      minPadding: 10,
      maxPadding: 0
      },
      title: {
      text: null
      },
      legend: {
      enabled: false
      },
      series: [
      {
      type: 'areaspline',
      data: data[0].data,
      }
      ]
      };






      javascript highcharts






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 19 '18 at 17:45









      ElliotElliot

      6,1152471113




      6,1152471113
























          2 Answers
          2






          active

          oldest

          votes


















          0














          If you set the min option for the y-Axis to a number just below your minimum - in your case perhaps 1595, and have startOnTick to false as you've mentioned, that will essentially 'zoom in' on the graph right away for your desired range given the inputs are within that range.






          share|improve this answer

















          • 1




            Thank you for the answer! If I set the min manually, it does work - I was hoping that I wouldn't need to specify that, but thats trivial so its what I'll do - thanks!!
            – Elliot
            Nov 19 '18 at 18:26



















          0














          Try to set min value of yAxis.



          const options = {
          chart: {
          height: '150px',
          backgroundColor: theme.colors.white02
          margin: 0,
          spacing: [0, 0, 0, 0]
          },
          xAxis: {
          title: {
          text: null
          },
          labels: {
          enabled: false
          },
          startOnTick: false,
          endOnTick: false,
          type: 'datetime',
          gridLineWidth: 1,
          },
          yAxis: {
          title: {
          text: null
          },
          labels: {
          enabled: false
          },
          startOnTick: false,
          minPadding: 10,
          maxPadding: 0,
          min: 1550
          },
          title: {
          text: null
          },
          legend: {
          enabled: false
          },
          series: [
          {
          type: 'areaspline',
          data: data[0].data,
          }
          ]
          };


          options.yAxis.min=1550;



          or you can assign minimal value from response array.






          share|improve this answer





















          • thanks for answer Sameer!! I would vote for yours too if I could (I selected the other answer as it was a couple min earlier)
            – Elliot
            Nov 19 '18 at 18:27










          • No problem. I was writing that time :)
            – Sameer
            Nov 19 '18 at 18:29











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53380065%2fhighcharts-yaxis-too-much-space-around-big-numbers%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          If you set the min option for the y-Axis to a number just below your minimum - in your case perhaps 1595, and have startOnTick to false as you've mentioned, that will essentially 'zoom in' on the graph right away for your desired range given the inputs are within that range.






          share|improve this answer

















          • 1




            Thank you for the answer! If I set the min manually, it does work - I was hoping that I wouldn't need to specify that, but thats trivial so its what I'll do - thanks!!
            – Elliot
            Nov 19 '18 at 18:26
















          0














          If you set the min option for the y-Axis to a number just below your minimum - in your case perhaps 1595, and have startOnTick to false as you've mentioned, that will essentially 'zoom in' on the graph right away for your desired range given the inputs are within that range.






          share|improve this answer

















          • 1




            Thank you for the answer! If I set the min manually, it does work - I was hoping that I wouldn't need to specify that, but thats trivial so its what I'll do - thanks!!
            – Elliot
            Nov 19 '18 at 18:26














          0












          0








          0






          If you set the min option for the y-Axis to a number just below your minimum - in your case perhaps 1595, and have startOnTick to false as you've mentioned, that will essentially 'zoom in' on the graph right away for your desired range given the inputs are within that range.






          share|improve this answer












          If you set the min option for the y-Axis to a number just below your minimum - in your case perhaps 1595, and have startOnTick to false as you've mentioned, that will essentially 'zoom in' on the graph right away for your desired range given the inputs are within that range.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 19 '18 at 18:00









          A ZibudaA Zibuda

          388




          388








          • 1




            Thank you for the answer! If I set the min manually, it does work - I was hoping that I wouldn't need to specify that, but thats trivial so its what I'll do - thanks!!
            – Elliot
            Nov 19 '18 at 18:26














          • 1




            Thank you for the answer! If I set the min manually, it does work - I was hoping that I wouldn't need to specify that, but thats trivial so its what I'll do - thanks!!
            – Elliot
            Nov 19 '18 at 18:26








          1




          1




          Thank you for the answer! If I set the min manually, it does work - I was hoping that I wouldn't need to specify that, but thats trivial so its what I'll do - thanks!!
          – Elliot
          Nov 19 '18 at 18:26




          Thank you for the answer! If I set the min manually, it does work - I was hoping that I wouldn't need to specify that, but thats trivial so its what I'll do - thanks!!
          – Elliot
          Nov 19 '18 at 18:26













          0














          Try to set min value of yAxis.



          const options = {
          chart: {
          height: '150px',
          backgroundColor: theme.colors.white02
          margin: 0,
          spacing: [0, 0, 0, 0]
          },
          xAxis: {
          title: {
          text: null
          },
          labels: {
          enabled: false
          },
          startOnTick: false,
          endOnTick: false,
          type: 'datetime',
          gridLineWidth: 1,
          },
          yAxis: {
          title: {
          text: null
          },
          labels: {
          enabled: false
          },
          startOnTick: false,
          minPadding: 10,
          maxPadding: 0,
          min: 1550
          },
          title: {
          text: null
          },
          legend: {
          enabled: false
          },
          series: [
          {
          type: 'areaspline',
          data: data[0].data,
          }
          ]
          };


          options.yAxis.min=1550;



          or you can assign minimal value from response array.






          share|improve this answer





















          • thanks for answer Sameer!! I would vote for yours too if I could (I selected the other answer as it was a couple min earlier)
            – Elliot
            Nov 19 '18 at 18:27










          • No problem. I was writing that time :)
            – Sameer
            Nov 19 '18 at 18:29
















          0














          Try to set min value of yAxis.



          const options = {
          chart: {
          height: '150px',
          backgroundColor: theme.colors.white02
          margin: 0,
          spacing: [0, 0, 0, 0]
          },
          xAxis: {
          title: {
          text: null
          },
          labels: {
          enabled: false
          },
          startOnTick: false,
          endOnTick: false,
          type: 'datetime',
          gridLineWidth: 1,
          },
          yAxis: {
          title: {
          text: null
          },
          labels: {
          enabled: false
          },
          startOnTick: false,
          minPadding: 10,
          maxPadding: 0,
          min: 1550
          },
          title: {
          text: null
          },
          legend: {
          enabled: false
          },
          series: [
          {
          type: 'areaspline',
          data: data[0].data,
          }
          ]
          };


          options.yAxis.min=1550;



          or you can assign minimal value from response array.






          share|improve this answer





















          • thanks for answer Sameer!! I would vote for yours too if I could (I selected the other answer as it was a couple min earlier)
            – Elliot
            Nov 19 '18 at 18:27










          • No problem. I was writing that time :)
            – Sameer
            Nov 19 '18 at 18:29














          0












          0








          0






          Try to set min value of yAxis.



          const options = {
          chart: {
          height: '150px',
          backgroundColor: theme.colors.white02
          margin: 0,
          spacing: [0, 0, 0, 0]
          },
          xAxis: {
          title: {
          text: null
          },
          labels: {
          enabled: false
          },
          startOnTick: false,
          endOnTick: false,
          type: 'datetime',
          gridLineWidth: 1,
          },
          yAxis: {
          title: {
          text: null
          },
          labels: {
          enabled: false
          },
          startOnTick: false,
          minPadding: 10,
          maxPadding: 0,
          min: 1550
          },
          title: {
          text: null
          },
          legend: {
          enabled: false
          },
          series: [
          {
          type: 'areaspline',
          data: data[0].data,
          }
          ]
          };


          options.yAxis.min=1550;



          or you can assign minimal value from response array.






          share|improve this answer












          Try to set min value of yAxis.



          const options = {
          chart: {
          height: '150px',
          backgroundColor: theme.colors.white02
          margin: 0,
          spacing: [0, 0, 0, 0]
          },
          xAxis: {
          title: {
          text: null
          },
          labels: {
          enabled: false
          },
          startOnTick: false,
          endOnTick: false,
          type: 'datetime',
          gridLineWidth: 1,
          },
          yAxis: {
          title: {
          text: null
          },
          labels: {
          enabled: false
          },
          startOnTick: false,
          minPadding: 10,
          maxPadding: 0,
          min: 1550
          },
          title: {
          text: null
          },
          legend: {
          enabled: false
          },
          series: [
          {
          type: 'areaspline',
          data: data[0].data,
          }
          ]
          };


          options.yAxis.min=1550;



          or you can assign minimal value from response array.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 19 '18 at 18:02









          SameerSameer

          18919




          18919












          • thanks for answer Sameer!! I would vote for yours too if I could (I selected the other answer as it was a couple min earlier)
            – Elliot
            Nov 19 '18 at 18:27










          • No problem. I was writing that time :)
            – Sameer
            Nov 19 '18 at 18:29


















          • thanks for answer Sameer!! I would vote for yours too if I could (I selected the other answer as it was a couple min earlier)
            – Elliot
            Nov 19 '18 at 18:27










          • No problem. I was writing that time :)
            – Sameer
            Nov 19 '18 at 18:29
















          thanks for answer Sameer!! I would vote for yours too if I could (I selected the other answer as it was a couple min earlier)
          – Elliot
          Nov 19 '18 at 18:27




          thanks for answer Sameer!! I would vote for yours too if I could (I selected the other answer as it was a couple min earlier)
          – Elliot
          Nov 19 '18 at 18:27












          No problem. I was writing that time :)
          – Sameer
          Nov 19 '18 at 18:29




          No problem. I was writing that time :)
          – Sameer
          Nov 19 '18 at 18:29


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53380065%2fhighcharts-yaxis-too-much-space-around-big-numbers%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          How to fix TextFormField cause rebuild widget in Flutter

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith