cancel
Showing results for 
Search instead for 
Did you mean: 

fixed length co-ordinates for business graphics

Former Member
0 Kudos

Hi,

We are using business graphics UI element with (chart type : Bars, Columns). The graphics output is working fine but the co-ordinates value of series is automatically getting adjusted to the maximum value of series values obtained.

But i want the co-ordinates values to be of fixed length. I tried changing the customizing values for value axis (Minimum value - 0 and Maximum value - 100) but doesnt seem to work.

Can someone help me on how to achieve this?

Regards,

Vijay

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Vijay Raj,

the MinimumCalculation / MaximumCalculation needs to be set to UserDefined.

Kind regards,

Silke

<ChartAxes>

<ValueAxis id="ValueAxis1">

<Minimum>0</Minimum>

<MinimumCalculation>UserDefined</MinimumCalculation>

<Maximum>100</Maximum>

<MaximumCalculation>UserDefined</MaximumCalculation>

</TimeAxis>

</ChartAxes>