Interface IDocumentExportOptions

Namespace: Reveal.Sdk
Assembly: Infragistics.Reveal.SDK.Server.dll
Syntax
public interface IDocumentExportOptions

Properties

Author

Document author. It will be displayed in the upper left corner

Declaration
string Author { get; set; }
Property Value
Type Description
System.String

Color

Color used for titles underlines

Declaration
int Color { get; set; }
Property Value
Type Description
System.Int32

Company

Company name displayed in the lower left corner

Declaration
string Company { get; set; }
Property Value
Type Description
System.String

InitScript

Indicates a script used to initilize revealView when exporting. The script must contain a function called initReveal(revealView)

Declaration
string InitScript { get; set; }
Property Value
Type Description
System.String
Examples

function initReveal(revealView) { revealView.onVisualizationSeriesColorAssigning = function(visualization, defaultColor, fieldName, categoryName) { if (categoryName === "Critical") { return "rgb(0,0,0)"; } return defaultColor; }; }

IsLandscape

Indicates page orientation when exporting

Declaration
bool IsLandscape { get; set; }
Property Value
Type Description
System.Boolean

Company logo displayed in the lower left corner. Only in the first page

Declaration
byte[] Logo { get; set; }
Property Value
Type Description
System.Byte[]