// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) 2020 OxyPlot contributors // // -------------------------------------------------------------------------------------------------------------------- namespace ExampleLibrary { using System; /// /// Properties of an example. /// [Flags] public enum ExampleFlags { /// /// Transpose the axes, so that horizontal axes become vertical and vice versa. /// Transpose = 1, /// /// Reverse the axes, so that their start and end positions are mirrored within the plot area. /// Reverse = 2, } }