Вопрос

enter image description hereI currently have a dataset with the columns API50, Counter Value and DBName. The values for example are something as below.

API50    CounterValue  DBName
34.5       1            Test1
44.5       25           Test1
34.5       42           Test1
54.5       67           Test1
34.5       76           Test1
94.5       88           Test1
14.5       99           Test1

I have created a chart report and selected my X axis as CounterValue my Y axis as API50.

The report is plotted correctly and my Y axis goes only upto 99.

Is there anyway I can have my X axis as 50 point increments till 600 (e.g., 0, 50, 100, 150...and so on till 600) and plot the counter value?

Any help is greatly appreciated.

Это было полезно?

Решение

Creating a basic chart with your sample data:

enter image description here

Gets the same result you have described, i.e. the X Axis just goes up to the maximum CounterValue value or so:

enter image description here

You need to update the X Axis properties:

enter image description here

Here I've updated:

  • List item
  • Maximum
  • Interval
  • Interval Type

I've also checked the Scalar Axis value - this is most important otherwise the above values won't work properly.

Now you can see the change in the designer:

enter image description here

And the end result has your axis requirements:

enter image description here

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top