Question

I am currently using a Microsoft Visual Studio.

And I created a line chart with my data. However, these data not vary linearly. As you can see in the picture below I want a log scale y axis and a linear scale x axis.

How do I modify the y axis to reflect this

enter image description here

Was it helpful?

Solution

if thats a logarithmic y axis then try making the y axis scale logarithmic. Once your chart is created try

  Chart1.ChartAreas(0).AxisY.IsLogarithmic = True

or in the form creator

enter image description here

and this will give you

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top