12 lines
206 B
C#
12 lines
206 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace RobotNet.WebApp.Charts.Enums;
|
|
|
|
|
|
[JsonConverter(typeof(LowerCaseEnumConverter<TooltipPosition>))]
|
|
public enum TooltipPosition
|
|
{
|
|
Average,
|
|
Nearest
|
|
}
|