cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with Business Graphics

Former Member
0 Kudos

Hai,

I am using Business graphics , I Used to display the simple series in a <b>coloumns</b> graph.

I want to display the total amount of the graph in top of every coloumn..

I want to display the value of the coloumn at the top of the coloumn.


i need the above graph as

3

2

1

|----


How to display the values in graph like this.....

regards,

Message was edited by: Naga Raju Meesala

Accepted Solutions (0)

Answers (1)

Answers (1)

Yashpal
Active Contributor
0 Kudos

Hi Naga ,

In the Chart Designer--->series there is a checkbox to be selected ...i dont remind that....try u fill find there......

Regards,

Yash

Former Member
0 Kudos

Hai yashpal,

I tried by check the showLabels.

But no use...

Please help me.

regards,

Former Member
0 Kudos

Hi,

In the chart designer do the following:

1. Expand "Series" node and select the properties for "Default Series"

2. Check the checkbox for "Show Labels"

3. In "Text Properties" change the "Vertical Position" to "Top"

4. Save your changes.

Regards,

Satyajit.

Former Member
0 Kudos

Hai Satyajit,

I am Not able to see the labels in my browser.

those labels are displayed in chart designer but not in the browser....

regards,

Former Member
0 Kudos

Please Help me put with this problem..

regards,

Former Member
0 Kudos

Hi,

How are you assigning values to this chart? What's your context structure?

Regards,

Satyajit.

Former Member
0 Kudos

hai,

my context structure is like this

+ABC

series2(double)

series3(double)

series4(double)

series5(double)

series6(double)

My UIElement Structuer

+BG1

Category1

SimpleSeries2

SimpleSeries3

SimpleSeries4

SimpleSeries5

SimpleSeries6

code is like this..

IPrivateFBGAppView.IAbcNode aNode = wdContext.nodeAbc();

IPrivateBGAppView.IAbcElement elm;

elm = wdContext.createAbcElement();

elm.setCategoryText("Cat");

elm.setSeries2(32);

elm.setSeries3(23);

elm.setSeries4(45);

elm.setSeries5(32);

elm.setSeries6(18);

al.add(elm);

regards,

Message was edited by: Naga Raju Meesala

Former Member
0 Kudos

Hi,

for each of the SimpleSeries elements for the Business Graphics, there should be a property called Label.

What happens if you enter some value for that?

Regards,

Satyajit.

Former Member
0 Kudos

Hai,

That Label shows in the legend.

and the Label is not bindable.

I showed the above code for sample but I Set the dynamically from webServices.

regards,

Former Member
0 Kudos

Hi,

You need to use Series instead of SimpleSeries. If you use Series, it will be a combination of Series and a SeriesList_Point. Create two values one each for x axis and y axis value for this point. Then you can bind a context attribute to the label of this Point.

I just checked this out and it worked for me.

Your UI should look like:

-BG1

|

Category1

-SeriesList[Series - Series]

-SeriesList_Point[Point - Point]

|_xValue[NumericValue - Value]

|_yValue[NumericValue - Value]

Your context should look like:

-Categories (Value node)

|_CategoryText (for category description)

|_xValue (for x axis)

|_yValue (for y axis)

|_label (for series label)

Regards,

Satyajit.

Message was edited by: Satyajit Chakraborty

Former Member
0 Kudos

Hai Satya,

Hope this will help me .

But Changing my total program into SimpleSeries to Series is quiet difficult.

Is there any chance to generate labels for SimpleSeries used charts.

Any Way thanks for your good help.

I will try on this way.

Thanks alot....

regards,

nagaraju.

Former Member
0 Kudos

Hai satya,

I solved it just by change the property of

Label Format.

just delete the $Label from Format it will work fine....

Thanks for your help..

regards,

Naga raju