TheObserver
TheObserver

Reputation: 3021

Extending chart functionality in SSRS

The default chart object in the SQL Server (2005) Business Intelligence Development Studio doesn't seem to some have formatting options like :

  1. specifying the text direction of labels in the x and y axis
  2. adding a trendline to a bar chart
  3. arbitrarily resizing items in a chart - for example, if I resize the chart object, everything gets resized accordingly but I can't keep the size of the chart the same while extending the area of the legend for instance.
  4. multiline chart labels

So what I want to know is

  1. is there any easy answer to the formatting problems mentioned above?
  2. what websites/books/resources/examples would you recommend I look into for extending the functionality of the chart object?

Upvotes: 3

Views: 3854

Answers (4)

Dan Sydner
Dan Sydner

Reputation: 448

I'd recommend go with the dundas chart components gbn suggested. If that's not possible at least this article should solve issue 1.

Upvotes: 0

gbn
gbn

Reputation: 432200

Some colleagues of mine gave up on the stock control and bought Dundas charts

The stock charts are cut down versions of Dundas.

Upvotes: 3

csbened
csbened

Reputation:

I don't see how you can resize the legend, puting inside the plot area looks ugly for pie-chart

Upvotes: 1

balaweblog
balaweblog

Reputation: 15460

yes you can specify the text direction of labels in the x and y axis

  1. Go to chart properties and in the tab x and y axis enter the chart title and in the title align use the combination like left/right/center align.
  2. you can change the legend line go to the chart properties click legend tab inside this there is an option for "display legend inside plot area" and you can include the trendline there
  3. you can use multiline text labels when the text limits extends

Upvotes: 1

Related Questions