cancel
Showing results for 
Search instead for 
Did you mean: 

IGS Stacked bars chart

Former Member
0 Kudos

Hi,

I am trying to create a Stacked Bar chart using IGS(Internet Graphics service) Chart Interpreter.

By default it display 5 intervals with the ranges (0 - 20 - 40- 60 -80-100).

I want to display 10 intervals with the ranges ( 0 - 10- 20-30-40-50-60-70-80-90-100)

How do i changes Intervals on the X-axis?

I am try to build upon the example program "GRAPHICS_IGS_CHART_TEST" we have in ECC 6.0

Any solutions/hints would be helpful.

Thanks

Shekar

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

In the view,

1. To the right of the view where u get all the UI Elements listed for the view, right click on the BG UI element.

2. Select the Edit Customizing

3. U will get the value Axis,

I think this will help u.

Ranganathan.

Answers (1)

Answers (1)

matthias_gemmel
Active Participant
0 Kudos

Hi,

to have the desired values in the axis you can set the stepsize of the value axis line to 10. The resulting XML snippet for the chart customizing would look as follows.

<ValueAxis id="ValueAxis1">

<Line>

<MajorTickCalculation>ManualStepsize</MajorTickCalculation>

<NumberMajorTicks>10</NumberMajorTicks>

</Line>

</ValueAxis>

I would recommend to use the chart designer to create this setting. Value Axis --> Line --> Major Ticks. Here set Major Tick Calculation to Manual Step Size and the Number to 10.

Best regards

Matthias