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

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top