VB 2005 ReportViewer to change the chart title on runtime

L

Lemune

Hi all.
I'm using reportviewer on vb 2005.
And my report will show chart data that i generate using class.
I want to change the title of chart on runtime.

Example:
When the chart show data about new member in year 2005 the chart title
goes "New Member 2005",
When the chart show data about new member in year 2006 the chart title
goes "New Member 2006" and so on.

Any idea, suggestion,clue or help?
Thank you.
 
L

Lemune

For information,
I'm using localreport

Me.ReportViewer1.Reset()
Me.ReportViewer1.LocalReport.ReportEmbeddedResource =
"MyApplication.rptMember.rdlc"
Me.ReportViewer1.LocalReport.DataSources.Add(fakeReportSource)
Me.ReportViewer1.RefreshReport()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top