Click or drag to resize

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
Syntax
public enum MessageSeverity
Members
  Member nameValueDescription
NoMinimumLevel0 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.
Debug10 Debug message. The user is usually not interested in this.
Information20 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.
Warning30 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.
RecoverableError40 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.
UnrecoverableError50 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.
Critical60 Critical error, will result in an exception in all cases.
See Also