Page 1 of 2

Labels extend beyond chart legend border

Posted: Mon Aug 13, 2012 4:58 am
by scott
Hi,

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

Thanks,
Scott

Re: Labels extend beyond chart legend border

Posted: Tue Aug 14, 2012 7:51 am
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.

Re: Labels extend beyond chart legend border

Posted: Tue Aug 14, 2012 7:30 pm
by scott
Hello,

I'm using version 2011.1

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

Regards,
Scott

Re: Labels extend beyond chart legend border

Posted: Tue Aug 14, 2012 7:31 pm
by scott
Reports.Ultimate v.2011.1, i meant to say.

Scott

Re: Labels extend beyond chart legend border

Posted: Wed Aug 15, 2012 10:11 am
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.

Re: Labels extend beyond chart legend border

Posted: Thu Aug 16, 2012 6:16 pm
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

Re: Labels extend beyond chart legend border

Posted: Fri Aug 17, 2012 2:11 pm
by HighAley
Hello.

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

Thank you.

Re: Labels extend beyond chart legend border

Posted: Fri Aug 17, 2012 11:35 pm
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

Re: Labels extend beyond chart legend border

Posted: Mon Aug 20, 2012 7:57 am
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.

Re: Labels extend beyond chart legend border

Posted: Mon Aug 20, 2012 7:23 pm
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