forked from oxyplot/oxyplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExampleFlags.cs
More file actions
27 lines (24 loc) · 859 Bytes
/
ExampleFlags.cs
File metadata and controls
27 lines (24 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ExampleFlags.cs" company="OxyPlot">
// Copyright (c) 2020 OxyPlot contributors
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace ExampleLibrary
{
using System;
/// <summary>
/// Properties of an example.
/// </summary>
[Flags]
public enum ExampleFlags
{
/// <summary>
/// Transpose the axes, so that horizontal axes become vertical and vice versa.
/// </summary>
Transpose = 1,
/// <summary>
/// Reverse the axes, so that their start and end positions are mirrored within the plot area.
/// </summary>
Reverse = 2,
}
}