Table of Contents

Enum MessageSeverity

Namespace
LightningChartLib.WinForms.Charting
Assembly
LightningChart.WinForms.Charting.NET4.dll

Tells the severity level of ChartMessage event. Used to determine which kind of actions should be taken on the message event.

public enum MessageSeverity

Fields

Critical = 60

Critical error, will result in an exception in all cases.

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.

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.

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.

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.