GanttPdfSettingsBuilder

Methods

Author(System.String)

The author of the PDF document.

Parameters

value - System.String

The value that configures the author.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.Author("Value"))
            )
             

AutoPrint(System.Boolean)

Specifies if the Print dialog should be opened immediately after loading the document.

Parameters

value - System.Boolean

The value that configures the autoprint.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.AutoPrint(true))
            )
             

AvoidLinks(System.Boolean)

A flag indicating whether to produce actual hyperlinks in the exported PDF file.It's also possible to pass a CSS selector as argument. All matching links will be ignored.

Parameters

value - System.Boolean

The value that configures the avoidlinks.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.AvoidLinks(true))
            )
             

Creator(System.String)

The creator of the PDF document.

Parameters

value - System.String

The value that configures the creator.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.Creator("Value"))
            )
             

Date(System.DateTime)

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

Parameters

value - System.DateTime

The value that configures the date.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.Date(DateTime.Now))
            )
             

FileName(System.String)

Specifies the file name of the exported PDF file.

Parameters

value - System.String

The value that configures the filename.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.FileName("Value"))
            )
             

ForceProxy(System.Boolean)

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

Parameters

value - System.Boolean

The value that configures the forceproxy.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.ForceProxy(true))
            )
             

JpegQuality(System.Double)

Specifies the quality of the images within the exported file, from 0 to 1.

Parameters

value - System.Double

The value that configures the jpegquality.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.JpegQuality(75))
            )
             

KeepPNG(System.Boolean)

If set to true all PNG images contained in the exported file will be kept in PNG format.

Parameters

value - System.Boolean

The value that configures the keeppng.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.KeepPNG(true))
            )
             

Keywords(System.String)

Specifies the keywords of the exported PDF file.

Parameters

value - System.String

The value that configures the keywords.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.Keywords("Value"))
            )
             

Landscape(System.Boolean)

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

Parameters

value - System.Boolean

The value that configures the landscape.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.Landscape(true))
            )
             

Margin(System.Action)

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

Parameters

configurator - System.Action<GanttPdfMarginSettingsBuilder>

The action that configures the margin.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.Margin(m => m.Bottom(12)))
            )
             

PaperSize(System.String)

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

Parameters

value - System.String

The value that configures the papersize.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.PaperSize("A4"))
            )
             

ProxyURL(System.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.

Parameters

value - System.String

The value that configures the proxyurl.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.ProxyURL("Value"))
            )
             

ProxyTarget(System.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="<fileName.pdf>".

Parameters

value - System.String

The value that configures the proxytarget.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.ProxyTarget("Value"))
            )
             

Subject(System.String)

Sets the subject of the PDF file.

Parameters

value - System.String

The value that configures the subject.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.Subject("Value"))
            )
             

Title(System.String)

Sets the title of the PDF file.

Parameters

value - System.String

The value that configures the title.

Example

Razor
 
            @(Html.Kendo().Gantt<TaskViewModel, DependencyViewModel>()
                .Name("gantt")
                .Pdf(p => p.Title("Value"))
            )