I'm testing the last demo version to know the possibility of integration with our products.
When I try to export to pdf, I get a gray square that does not appear in the preview.
I tried to change options on the component but without success.
Is this behavior a bug or is it because I use a trial version?
Any help would be appreciated.
Related
i just want to create a pentaho cde dashboard with convert to pdf button. when i click the button the dashboard should be downloaded as pdf format. i searched couple of blogs they suggested to use sparkl and phantomjs to do so. but currently sparkl is not available in pentaho marketplace. there is any alternative way to do this conversion? please help me.
Thanks in advance,
Kannas
some time ago a customer of my company asked the same and I was in the same situation as you, phantomjs works, but the customers asked for something a little more complicated, they wanted the graphics to export it will stay with the state they had , That is to say when filtering they will be exported to PDF as well. After giving up with phantomjs, I started looking for other technologies to do this, and so I found the following
jspdf.js
html2canvas.js
html2canvas.svg.js
rgbcolor.js
stackBlur.js
canvg.js
addhtml.js
I explain what I did, create a new document using jspdf, then add the html page to a temporary canvas with canvg.js, html2canvas.js, html2canvas.svg.js, you have to keep in mind that the graphics are svg, and the treatment to add it to the canvas is different than create and then export it to PDF
I create a component of Pentaho, that you pass the html object that you want to export and export only that, I can not give you the code because it is reserved right for my company, but at some point I will create this component again to share it with the community, Regards
Hi, I need to develop an WinRT app with XAML and I'm using Syncfusion's library for that. Whenever I click on a node the resizer appears along with the rotate icon. I removed all the QuickCommands but the rotate icon won't go away.
Please note that I am using the SfDiagram inside a custom control. Thanks
We are glad to announce that our Essential Studio 2015 Volume 1 is rolled out and is available for download under the following link:
http://www.syncfusion.com/forums/118723/essential-studio-2015-volume-1-final-release-v13-1-0-21-available-for-download
Feature Information:
Requirement: Remove the Rotate Icon from Node
We have provided support to achieve your requirement in our Essential Studio 2015 Volume 1.This requirement can be achieved by using SelectorConstraints property of ISelector. We have provided code snippet to represent this. Please refer to the following code snippet
Code Snippet:
(DiagramControl.SelectedItems as ISelector).SelectorConstraints = (DiagramControl.SelectedItems as ISelector).SelectorConstraints & ~SelectorConstraints.Rotator;
Here, DiagramControl is the instance of SfDiagram.
We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance.
Regards,
Syncfusion Support Team
I want to print a Vaadin layout and all of its components (text, tables, html, charts, etc), sending it to a pdf preview, hopefully getting exactly what I see in the screen (for that specific layout)
thanks!!!
The solution, seems to me, that is not something Vaadin is able to provide. You have to extract the html specific to you desired layout and, along with the styling, delegate to a tool that might convert it properly to a PDF, like jsPDF, but you need to integrate it into your Vaadin application.
If you're interested I can try to write some code that will help you. If so, let me know.
I am using highcharts and am having issues with the functionality with internet explorer 10.01.
For polar charts the series do not load until you roll the mouse over the chart. If you have a series that is an area (filled), you need to turn the series off then on again before it displays.(version 2.3.5 does not fix this issue)
Saving the presented image from the icon with the chart does not render correctly. You can it is a radar chart, but cannot make out any of the values, or colours. They tend to be grey. (version 2.3.5 fixes this issue)
Are these issues known?
Is there a solution to these issues/work around? Has it something to do with SVG? Could I force it to use VML?
Is there a planned fix for these?
This is now a recognised as an issue by highcharts and it will be fixed in due course
https://github.com/highslide-software/highcharts.com/issues/1499
Update:
A hack workaround in the meantime, is to hide and show a single series on the chart after you have rendered in, in JavaScript
if(chart.series.length>0)
{
chart.series[0].hide();
chart.series[0].show();
}
Use Version 2.3.5 it has fixed IE10 support.
I am working on the PDF App for iPad and facing an issue: how to search a text in PDF and also how to highlight that text?
Yours is the same big problem I'm having. My understanding is that, currently on iOS 4.0, the main public API is CGPDF . It allows us to parse PDF, and with it we can search strings in it. See also this Quartz 2D document. It also allows us to render it on the screen using CGContextDrawPage. However, it's not yet possible to get the position of a text in the rendered image. (On OS X it's possible using PDFKit.)
So, I'm afraid that you need to implement the PDF spec yourself to get that info. I think GoodReader etc. is working very very hard to implement these.
I had the same trouble recently and then I found FastPDFKit. Have tested the package and it's working great.
http://mobfarm.eu/fastpdfkit