function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
robertcw777robertcw777 

Fix Scale on Visualforce Chart

Is there any way to fix a scale and scale interval on a visualforce chart? I'm plotting a bar series that looks like:

 

x           y

-30       1

-20       5

-10       8

+10      3

+20      4

+30      6

 

It anchors the vertical barchart y axis scale at 1 and the top at 9, therefore, there is no bar shown for the first point at x=-30. I guess in a series starting at x=0 you could add another element at 0,0, but that doesn't work here. I can' t see any way in the documentation to set the scale, I also have the case where they y-values need to be whole numbers, yet it shows the scale in increments of 0.5,

 

 

Best Answer chosen by Admin (Salesforce Developers) 
robertcw777robertcw777

Never mind. The answer is the miniumum, maximum and steps attributes on <apex:axis>. Somehow I missed it.