Reads the chart property and data settings (chart description) and images from the specified string.

Namespace:  C1.Win.C1Chart
Assembly:  C1.Win.C1Chart.2 (in C1.Win.C1Chart.2.dll)

Syntax

C#
public void LoadChartAndImagesFromString(
	string str
)
Visual Basic
Public Sub LoadChartAndImagesFromString ( _
	str As String _
)

Parameters

str
Type: System..::..String
String which contains chart description.

Remarks

This method loads the contents of the specified string in XML format into the chart. The string should contain the output of a call to SaveChartToString or SaveChartAndImagesToString. If the latter method was used to create the load string, then any chart element images are also reset to the saved values. If an error occurs, an appropriate exception is thrown indicating the cause of error.

See Also