Labels extend beyond chart legend border

Stimulsoft Ultimate discussion
scott
Posts: 21
Joined: Tue Feb 22, 2011 1:57 pm
Location: USA

Labels extend beyond chart legend border

Post by scott »

Hi,

Is there a setting for something like a legend border buffer?

Thanks,
Scott
Attachments
LegendOverflow.JPG
LegendOverflow.JPG (10.65 KiB) Viewed 4788 times
Ivan
Posts: 960
Joined: Thu Aug 10, 2006 1:37 am

Re: Labels extend beyond chart legend border

Post by Ivan »

Hello,

Which version and build of Stimulsoft Reports do you use?
Can you please send us a sample report template with data, which reproduces the issue?

Thank you.
scott
Posts: 21
Joined: Tue Feb 22, 2011 1:57 pm
Location: USA

Re: Labels extend beyond chart legend border

Post by scott »

Hello,

I'm using version 2011.1

I'll try to get you the report and data...

Regards,
Scott
scott
Posts: 21
Joined: Tue Feb 22, 2011 1:57 pm
Location: USA

Re: Labels extend beyond chart legend border

Post by scott »

Reports.Ultimate v.2011.1, i meant to say.

Scott
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Labels extend beyond chart legend border

Post by HighAley »

Hello.

There are seven Viewers and seven Designer in the Reports.Ultimate http://www.stimulsoft.com/CompareProducts.aspx
Which of them do you use?
Please, send us a sample report template with data to reproduce the issue.

Thank you.
scott
Posts: 21
Joined: Tue Feb 22, 2011 1:57 pm
Location: USA

Re: Labels extend beyond chart legend border

Post by scott »

Are these attachments what you're looking for?

I'm using the designer (the one labeled "Designer") in the Program Files folder, created on installation of Stimulsoft Reports.Ultimate 2011.1.

For the viewer, in XAML, i'm using viewer:StiSLViewerControl.

Scott
Attachments
Output Data Files.zip
Sender\Receiver report with data dictionary.
(237.44 KiB) Downloaded 260 times
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Labels extend beyond chart legend border

Post by HighAley »

Hello.

We couldn't reproduce your issue without any data for your report.

Thank you.
scott
Posts: 21
Joined: Tue Feb 22, 2011 1:57 pm
Location: USA

Re: Labels extend beyond chart legend border

Post by scott »

Hi,

I guess i'm not sure how to output the report data to an importable file, then. Have you got any tips?

I tried report.Dictionary.Save(@"C:\Analytics\SenderReceiverReport.dic"); where report is an StiReport object.

Thanks,
Scott
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Labels extend beyond chart legend border

Post by HighAley »

Hello.

As a way, you can use the following code in the BeforePrint event of a page and sent us the files you get.

Code: Select all

{YourDataTableName}.DataTable.DataSet.WriteXml("e:\\data.xml");
{YourDataTableName}.DataTable.DataSet.WriteXmlSchema("e:\\data.xsd");
Thank you.
scott
Posts: 21
Joined: Tue Feb 22, 2011 1:57 pm
Location: USA

Re: Labels extend beyond chart legend border

Post by scott »

Hi,

Unfortunately, that's not possible for me. I am adding data to the StiReport object like this:

report.RegData(Properties.Resources.Institution, (Object)inst);
report.RegData(Properties.Resources.Department, (Object)dept);
report.RegData(Properties.Resources.UserDetail, (Object)userDetails);
report.RegData(Properties.Resources.OrganizationLevel, (Object)organizationLevel);
report.RegData(Properties.Resources.ReportDetails, (Object)repDetails);
report.RegData(Properties.Resources.SenderReceiverActivityReport, (Object)actReport);

The "actReport" object is a bunch of generic Dictionary objects.

Is there a way I can export the data from the StiReport object, "report", to a file to send to you?

Thanks,
Scott
Post Reply