VB 2005 ReportViewer to change the chart title on runtime

  • Thread starter Thread starter Lemune
  • Start date Start date
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.
 
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()
 
Back
Top