This is a migrated thread and some comments may be shown as answers.

Printing

6 Answers 189 Views
Chart (obsolete as of Q1 2013)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Stuart
Top achievements
Rank 1
Stuart asked on 03 Jul 2007, 01:02 PM
Hi

I am having some trouble with the report chart in winforms , I would like to export or print a winform chart , how would I do this ?

ANy help would be great

6 Answers, 1 is accepted

Sort by
0
Chavdar
Telerik team
answered on 04 Jul 2007, 04:37 PM
Hi Stuart,

You can print the chart using the PrintChart method:

    this.radChart1.Printing.PrintChart(ChartPrintOptions.ShowPrintPreviewDialog);

or save it to a graphics file using the Save method:

    this.radChart1.Save("C:\\RadChart.png", ImageFormat.Png);

Hope this helps.

 
Regards,
Chavdar
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Stuart
Top achievements
Rank 1
answered on 09 Jul 2007, 09:48 AM
Thank you

It works perfectly
0
Adonis
Top achievements
Rank 1
answered on 18 May 2009, 09:58 AM
i have a question to you, Like as:
  dim chart as new Radchart
Chart.datamanager,datasource= ds.tables(0)
chart.dataManager.ValuesYColumns= new String() {ColumnsName)
.
.
chart.databind()
chart.updata()
when i want to change a datasource, i write :
chart.datamanager.cleardatesource
chart.datamanager.datasource= ds2.tables(0)
chart.dataManager.ValuesYColumns= new String() {otherColumnsName)
.
.
chart.databind()
chart.updata()
 but it is wrong ,the chart.datamanager.ValuesYColumns remains equal ColumnsName. why not otherColumnsName?
Can you help me?
thank you!i have a question to you, Like as:
  dim chart as new Radchart
Chart.datamanager,datasource= ds.tables(0)
chart.dataManager.ValuesYColumns= new String() {ColumnsName)
.
.
chart.databind()
chart.updata()
when i want to change a datasource, i write :
chart.datamanager.cleardatesource
chart.datamanager.datasource= ds2.tables(0)
chart.dataManager.ValuesYColumns= new String() {otherColumnsName)
.
.
chart.databind()
chart.updata()
 but it is wrong ,the chart.datamanager.ValuesYColumns remains equal ColumnsName. why not otherColumnsName?
Can you help me?
thank you!
0
Adonis
Top achievements
Rank 1
answered on 18 May 2009, 10:00 AM
Hello,i have a question to ask  you, Like as:
  dim chart as new Radchart
Chart.datamanager,datasource= ds.tables(0)
chart.dataManager.ValuesYColumns= new String() {ColumnsName)
.
.
chart.databind()
chart.updata()
when i want to change a datasource, i write :
chart.datamanager.cleardatesource
chart.datamanager.datasource= ds2.tables(0)
chart.dataManager.ValuesYColumns= new String() {otherColumnsName)
.
.
chart.databind()
chart.updata()
 but it is wrong ,the chart.datamanager.ValuesYColumns remains equal ColumnsName. why not otherColumnsName?
Can you help me?
thank you!
0
Dwight
Telerik team
answered on 20 May 2009, 11:12 AM
Hi Adonis,

There seems to be an issue with some caching algorithms in the RadChart. It is logged into our bug tracking system and will be resolved in a future release.

Best wishes,
Evtim
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Dwight
Telerik team
answered on 20 May 2009, 11:15 AM
Hi Adonis,

There seems to be an issue with some caching algorithms in the RadChart. It is logged into our bug tracking system and will be resolved in a future release.

Best wishes,
Evtim
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Chart (obsolete as of Q1 2013)
Asked by
Stuart
Top achievements
Rank 1
Answers by
Chavdar
Telerik team
Stuart
Top achievements
Rank 1
Adonis
Top achievements
Rank 1
Dwight
Telerik team
Share this question
or