Home Forums Chart Support Y axis first label missing

Y axis first label missing

Viewing 2 posts - 1 through 2 (of 2 total)
  • #34292

    Hello, I have a log scale y-axis starting at 0.0001 and I’m not sure how to show that first label. JSFiddle

    #34318

    @joshuasosa,

    Sorry, controlling the first label to display on the axes is not available as of now. However to display axis label for 0.0001, you can set the minimum value of y-axis to 0.00009 in this case.

    axisY: {
          logarithmic: true,
          minimum: 0.00009,
          maximum: 10000,
          includeZero: true,
          interval: 1
    }

    Also, check out this updated JSFiddle for complete working code.

    Setting minimum value for axisY

    —-
    Manoj Mohan
    Team CanvasJS

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.