MessageSeverity Enumeration |
LightningChart .NET Help
Tells the severity level of ChartMessage event.
Used to determine which kind of actions should be taken on the message event.
Namespace:
Arction.Wpf.ChartingMVVM
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic enum MessageSeverity
Public Enumeration MessageSeverity
public enum class MessageSeverity
Members|
| Member name | Value | Description |
|---|
| NoMinimumLevel | 0 |
NoMinimumLevel is only used in setting ChartMessageMinimumLevel to allow all messages to be sent to the user.
Should not be used in ChartMessage events as this will cause a warning.
|
| Debug | 10 |
Debug message. The user is usually not interested in this.
|
| Information | 20 |
Information, not an error. Should not require any actions from the user.
Some incorrect usage of LightningChart has happened which shouldn't impact chart performance.
|
| Warning | 30 |
Warning, not an error. User action might be required.
Incorrect usage of LightningChart has happened, like setting an illegal property value
or mismatching data point types which might cause minor problems with the application.
|
| RecoverableError | 40 |
An error happened that should have been recovered. User action might be required.
User must listen to ChartMessage events or the message will be thrown as an exception.
|
| UnrecoverableError | 50 |
An error happened in the application that the chart couldn't recover from.
User must listen to ChartMessage events or the message will be thrown as an exception.
|
| Critical | 60 |
Critical error, will result in an exception in all cases.
|
See Also