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

Adding Graph in Report using C#

1 Answer 92 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Rodney
Top achievements
Rank 1
Rodney asked on 08 Jul 2020, 04:35 PM

Hi,

I am looking to create a report and add a graph purely using C#. Is this possible?

For example in C#:

Report report = new Report();

DetailSection section = new DetailSection();

Graph graph = new Graph();

section.Items.Add(graph);

report.Items.Add(section);

....

 

I am currently trying to accomplish this but the graph does not show. Note, the code I put here is oversimplified and I have setup the report, section and graph (hopefully) correctly. I can get the report to display a Shape but not the Graph.

1 Answer, 1 is accepted

Sort by
0
Rodney
Top achievements
Rank 1
answered on 08 Jul 2020, 08:03 PM
Disregard this question. The sections were overlapping..
Tags
General Discussions
Asked by
Rodney
Top achievements
Rank 1
Answers by
Rodney
Top achievements
Rank 1
Share this question
or