<kendo:stockChart-pdf>

Configures the export settings for the saveAsPDF method.

Example

<kendo:stockChart>
    <kendo:stockChart-pdf></kendo:stockChart-pdf>
</kendo:stockChart>

Configuration Attributes

author java.lang.String

The author of the PDF document.

Example

<kendo:stockChart-pdf author="author">
</kendo:stockChart-pdf>

creator java.lang.String

The creator of the PDF document.

Example

<kendo:stockChart-pdf creator="creator">
</kendo:stockChart-pdf>

date java.util.Date

The date when the PDF document is created. Defaults to new Date().

Example

<kendo:stockChart-pdf date="date">
</kendo:stockChart-pdf>

fileName java.lang.String

Specifies the file name of the exported PDF file.

Example

<kendo:stockChart-pdf fileName="fileName">
</kendo:stockChart-pdf>

forceProxy boolean

If set to true, the content will be forwarded to proxyURL even if the browser supports saving files locally.

Example

<kendo:stockChart-pdf forceProxy="forceProxy">
</kendo:stockChart-pdf>

keywords java.lang.String

Specifies the keywords of the exported PDF file.

Example

<kendo:stockChart-pdf keywords="keywords">
</kendo:stockChart-pdf>

landscape boolean

Set to true to reverse the paper dimensions if needed such that width is the larger edge.

Example

<kendo:stockChart-pdf landscape="landscape">
</kendo:stockChart-pdf>

paperSize java.lang.Object

Specifies the paper size of the PDF document. The default "auto" means paper size is determined by content.Supported values: A predefined size: "A4", "A3" etc; An array of two numbers specifying the width and height in points (1pt = 1/72in) or An array of two strings specifying the width and height in units. Supported units are "mm", "cm", "in" and "pt"..

Example

<kendo:stockChart-pdf paperSize="paperSize">
</kendo:stockChart-pdf>

proxyTarget java.lang.String

A name or keyword indicating where to display the document returned from the proxy.If you want to display the document in a new window or iframe, the proxy should set the "Content-Disposition" header to inline; filename="".

Example

<kendo:stockChart-pdf proxyTarget="proxyTarget">
</kendo:stockChart-pdf>

proxyURL java.lang.String

The URL of the server side proxy which will stream the file to the end user.A proxy will be used when the browser isn't capable of saving files locally. Such browsers are IE version 9 and lower and Safari.The developer is responsible for implementing the server-side proxy.The proxy will receive a POST request with the following parameters in the request body: contentType: The MIME type of the file; base64: The base-64 encoded file content or fileName: The file name, as requested by the caller.. The proxy should return the decoded file with set "Content-Disposition" header.

Example

<kendo:stockChart-pdf proxyURL="proxyURL">
</kendo:stockChart-pdf>

subject java.lang.String

Sets the subject of the PDF file.

Example

<kendo:stockChart-pdf subject="subject">
</kendo:stockChart-pdf>

title java.lang.String

Sets the title of the PDF file.

Example

<kendo:stockChart-pdf title="title">
</kendo:stockChart-pdf>

Configuration JSP Tags

kendo:stockChart-pdf-margin

Specifies the margins of the page (numbers or strings with units). Supported units are "mm", "cm", "in" and "pt" (default).

More documentation is available at kendo:stockChart-pdf-margin.

Example

<kendo:stockChart-pdf>
    <kendo:stockChart-pdf-margin></kendo:stockChart-pdf-margin>
</kendo:stockChart-pdf>
In this article
Not finding the help you need?