Back to Devexpress

SankeyDiagramControl.LoadFromFile(String) Method

wpf-devexpress-dot-xpf-dot-charts-dot-sankey-dot-sankeydiagramcontrol-dot-loadfromfile-x28-system-dot-string-x29.md

latest2.4 KB
Original Source

SankeyDiagramControl.LoadFromFile(String) Method

SECURITY-RELATED CONSIDERATIONS

Using file paths sourced from untrusted input may expose unauthorized files or allow unintended file access. Always validate and normalize all external paths to prevent path manipulation.

Restores the diagram’s layout from an XML file.

Namespace : DevExpress.Xpf.Charts.Sankey

Assembly : DevExpress.Xpf.Charts.v25.2.dll

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
public void LoadFromFile(
    string fileName
)
vb
Public Sub LoadFromFile(
    fileName As String
)

Parameters

NameTypeDescription
fileNameString

The path to the file that contains the layout.

|

Remarks

Use the LoadFromFile method to load the diagram layout from an XML file. If this file does not exist, the System.IO.FileNotFoundException is raised. Note that the layout file does not contain data items. Specify the diagram’s DataSource property to load data to the Sankey Diagram Control after the LoadFromFile method is called.

csharp
sankeyDiagramControl1.LoadFromFile("D:/temp/SankeyLayout.xml");
sankeyDiagramControl1.DataSource = model.GetData();
vb
sankeyDiagramControl1.LoadFromFile("D:/temp/SankeyLayout.xml")
sankeyDiagramControl1.DataSource = model.GetData()

To save the layout to a file, call the SankeyDiagramControl.SaveToFile method.

See Also

SaveToFile(String)

SankeyDiagramControl Class

SankeyDiagramControl Members

DevExpress.Xpf.Charts.Sankey Namespace