Html Display apex chart in ContentFlow - html

I am using ContentFlow library to display objects as cover flow view. When I am displaying images , it is working fine . But on using apex charts its view is getting disturbed. Is there any way to display apex charts in proper format using ContentFlow library?
Please provide some solid solution. I tried many things but they did not work

Related

Sharepoint Online Forms + JSON - embed video; several buttons in the footer

I'm new to JSON and i can't seem to find answear.
I need to create form in SharePoint Online list using JSON (in this project I am forbidden to use PowerApps). There are 2 issues I face:
Is it possibe to embed video in the form using JSON? The video is located on SharePoint Library,
I am struggling with adding multiple buttons (with link) in the footer. I managed to add one button, but no more... These buttons should be next to each other.
Im sorry but i cannot share my current code due to internal policies... :(
Pls help
Im looking for sample code, suggestions -- thanks in advance!

Insert webpage inside a .vsdx project

I have to embed a dynamic dashboard (written using HTML/CSS/JS) created by myself inside a Visio Drawing (.vsdx) file.
I haven't find a way to do that. If it is not possible directly in Visio, can I embed that dashboard in Visio by using another Microsoft Office Application?
I understand the content needs to stay dynamic. Insert Microsoft's Webbrowser control in the drawing.
You may need some code to get it to navigate to your page.
(https://msdn.microsoft.com/de-de/library/aa752044(v=vs.85).aspx)

JasperReports - Embedding chart as SVG into HTML report

I'm using JasperReports integrated into Spring application (JasperReports 6.3.0, SpringBoot 1.4.1).
I have a report (created with Jaspersoft Studio 6.3.1) with a stacked bar chart within. It does print properly in pdf, xls. The problem is html format, which has the chart displayed as an empty box - when you look at the source code, the src attribute of img element is empty.
I've seen people advicing setting up some kind of Jasper-defined servlet to serve images as static files to html report, though this might be extra complicated with environment I'm working on.
The most convenient way I can think of is to insert the chart in svg format, so that it would be present inside the html content - this is my preferred solution to this.
The chart element (in report desing) actually has an option to be displayed as svg, though changing this doesn't seem to affect html output at all, just like Jasper would want to export the created svg to a file, and then include it as image anyways.
I've tried several config options, but I'm kind of stuck now, so my question is:
Do I need some extra environment setup, or some other fancy stuff, to reach my goal? Is what I ask for even possible with JasperReports?
Thanks in advance!
What you need is the following two properties in your jasperreports.properties (if you don't already have that file, create it and put it to a jar or folder that's on the application classpath):
net.sf.jasperreports.chart.render.type=svg
net.sf.jasperreports.export.html.embed.image=true

Display PowerPoint presentation within a Windows Store App

Is there any way to read and view a PowerPoint presentation within a Windows Store App?
What I want to achieve is to open the .pptx file from the computer and display the slides inside the app. Basically, it would be like a PowerPoint viewer.
What I figured out with extensive searching is I can use Aspose.Slides API to convert the slides to images and then display them to the user. But firstly, Aspose.Slides is not available for WinRT and secondly, it is not free. The OOXML is really complicated and I can't find an approach to achieve this via OOXML. What could be a work around to the problem? And can there be a way to manipulate the slides?
I haven't seen a WinRT API for PowerPoint, but if you found one for .NET you could easily write a web service that would take a ppt or pptx and use the API to convert it to images or something else that you can display.
If you have some control over the presentations - you might also consider saving them as XPS which is WPF/XAML based format, but even then you would need to do some more work to process it to a XAML format compatible with WinRT/XAML and might still have some problems loading custom embedded fonts etc.

How to show pie, bar chart in pdf using dompdf

Hi I am using dompdf
I have report page where i have used google pie chart and google bar chart. The charts work fine in the browser. I have to display that these chart in pdf file that is created with DOMPDF. I used the same code withing the code that generates the pdf but it did not work. Is it possible to create pdf file with the google bar and pie chart? If yes, how can i implement and if not then is there any other way to create the pdf with pie chart?
Hope to get answer soon. Thanks in advance
dompdf does not currently support client-generated content (i.e. something generated using JavaScript). The Google visualization library you're pointing to is dynamically generated in the client.
If you want to use a dynamically-generated chart in dompdf you'll have to use something that generates it on the server. Google does have something like this in it's image charts library, but it's been deprecated (i.e. currently, guaranteed availability is only until 2015). You can find similar libraries.
If you still want to use client-generated charts you can try a product like wkhtmltopdf. It's based on the webkit rendering engine and supports client-side scripting.