WebChartControl.BinaryStorageMode Property
In This Article
Gets or sets a value indicating the mode in which the control’s images are stored on the server.
Namespace: DevExpress.XtraCharts.Web
Assembly: DevExpress.XtraCharts.v24.2.Web.dll
NuGet Package: DevExpress.Web.Visualization
#Declaration
[DefaultValue(BinaryStorageMode.Default)]
public BinaryStorageMode BinaryStorageMode { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Binary |
Default | A Binary |
Available values:
Name | Description |
---|---|
Default | The Cache mode is used if another configuration isn’t defined by the Binary |
Cache | Binary data is stored within a cache. |
Session | Binary data is stored within a session. |
Custom | Custom mode provides for implementing a custom scenario for storing and accessing binary data. |
#Remarks
To learn more, see the Binary Storage Configuration topic.
See Also