\Kendo\Dataviz\UI\StockChartPdf

A PHP class representing the pdf setting of StockChart.

Methods

author

The author of the PDF document.

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value string

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->author('value');
?>

creator

The creator of the PDF document.

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value string

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->creator('value');
?>

date

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

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value date

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->date(new date());
?>

fileName

Specifies the file name of the exported PDF file.

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value string

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->fileName('value');
?>

forceProxy

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

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value boolean

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->forceProxy(true);
?>

keywords

Specifies the keywords of the exported PDF file.

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value string

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->keywords('value');
?>

landscape

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

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value boolean

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->landscape(true);
?>

margin

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

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value \Kendo\Dataviz\UI\StockChartPdfMargin|array

Example - using \Kendo\Dataviz\UI\StockChartPdfMargin

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$margin = new \Kendo\Dataviz\UI\StockChartPdfMargin();
$bottom = 1;
$margin->bottom($bottom);
$pdf->margin($margin);
?>

Example - using array

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$bottom = 1;
$pdf->margin(array('bottom' => $bottom));
?>

paperSize

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"..

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value string|array

Example - using string

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->paperSize('value');
?>

Example - using array

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->paperSize(array());
?>

proxyTarget

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="".

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value string

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->proxyTarget('value');
?>

proxyURL

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.

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value string

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->proxyURL('value');
?>

subject

Sets the subject of the PDF file.

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value string

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->subject('value');
?>

title

Sets the title of the PDF file.

Returns

\Kendo\Dataviz\UI\StockChartPdf

Parameters

$value string

Example

<?php
$pdf = new \Kendo\Dataviz\UI\StockChartPdf();
$pdf->title('value');
?>
In this article
Not finding the help you need?