Back to Devexpress

ChartControl.ExportToHtml(Stream, String, String, Boolean) Method

windowsforms-devexpress-dot-xtracharts-dot-chartcontrol-dot-exporttohtml-x28-system-dot-io-dot-stream-system-dot-string-system-dot-string-system-dot-boolean-x29.md

latest3.0 KB
Original Source

ChartControl.ExportToHtml(Stream, String, String, Boolean) Method

OBSOLETE

This method is now obsolete. You should use the ExportToHtml method instead.

Exports the chart’s layout to an HTML document with the specified encoding and title and sends it to the specified stream.

Namespace : DevExpress.XtraCharts

Assembly : DevExpress.XtraCharts.v25.2.UI.dll

NuGet Package : DevExpress.Win.Charts

Declaration

csharp
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("This method is now obsolete. You should use the ExportToHtml(Stream, HtmlExportOptions) method instead.")]
public void ExportToHtml(
    Stream stream,
    string htmlCharSet,
    string title,
    bool compressed
)
vb
<Obsolete("This method is now obsolete. You should use the ExportToHtml(Stream, HtmlExportOptions) method instead.")>
<Browsable(False)>
<EditorBrowsable(EditorBrowsableState.Never)>
Public Sub ExportToHtml(
    stream As Stream,
    htmlCharSet As String,
    title As String,
    compressed As Boolean
)

Parameters

NameTypeDescription
streamStream

A Stream object to which the created document is exported.

| | htmlCharSet | String |

A String which specifies the encoding name set in the HTML file (e.g. “UTF-8”).

| | title | String |

A String which specifies the name shown as the title of the created HTML document.

| | compressed | Boolean |

true to compress the HTML code (secondary characters e.g. spaces are removed); otherwise, false.

|

Remarks

This method is now obsolete. Instead, use the ChartControl.ExportToHtml method with the options parameter.

See Also

ExportToMht

IsPrintingAvailable

ChartControl Class

ChartControl Members

DevExpress.XtraCharts Namespace