Labels extend beyond chart legend border
Labels extend beyond chart legend border
Hi,
Is there a setting for something like a legend border buffer?
Thanks,
Scott
Is there a setting for something like a legend border buffer?
Thanks,
Scott
- Attachments
-
- LegendOverflow.JPG (10.65 KiB) Viewed 4790 times
Re: Labels extend beyond chart legend border
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.
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
Hello,
I'm using version 2011.1
I'll try to get you the report and data...
Regards,
Scott
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
Reports.Ultimate v.2011.1, i meant to say.
Scott
Scott
Re: Labels extend beyond chart legend border
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.
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
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
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
Re: Labels extend beyond chart legend border
Hello.
We couldn't reproduce your issue without any data for your report.
Thank you.
We couldn't reproduce your issue without any data for your report.
Thank you.
Re: Labels extend beyond chart legend border
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
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
Hello.
As a way, you can use the following code in the BeforePrint event of a page and sent us the files you get.
Thank you.
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");
Re: Labels extend beyond chart legend border
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
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