Constants.cs 570 B

123456789101112131415161718192021
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. namespace FastReport.DataVisualization.Charting
  8. {
  9. internal static class Constants
  10. {
  11. public const string AutoValue = "Auto";
  12. public const string NotSetValue = "NotSet";
  13. public const string MinValue = "Min";
  14. public const string MaxValue = "Max";
  15. }
  16. }