Disabling Nuvoton NCT6791D because of fan full speed bug on Asus Z97 WS.
1 // --------------------------------------------------------------------------------------------------------------------
2 // <copyright file="HighLowItem.cs" company="OxyPlot">
3 // The MIT License (MIT)
5 // Copyright (c) 2012 Oystein Bjorke
7 // Permission is hereby granted, free of charge, to any person obtaining a
8 // copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
15 // The above copyright notice and this permission notice shall be included
16 // in all copies or substantial portions of the Software.
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21 // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22 // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 // Represents an item in a HighLowSeries.
29 // --------------------------------------------------------------------------------------------------------------------
30 namespace OxyPlot.Series
33 /// Represents an item in a <see cref="HighLowSeries"/>.
35 public class HighLowItem
40 public static readonly HighLowItem Undefined = new HighLowItem(double.NaN, double.NaN, double.NaN);
68 /// Initializes a new instance of the <see cref="HighLowItem"/> class.
75 /// Initializes a new instance of the <see cref="HighLowItem"/> struct.
80 /// <param name="high">
83 /// <param name="low">
86 /// <param name="open">
89 /// <param name="close">
92 public HighLowItem(double x, double high, double low, double open = double.NaN, double close = double.NaN)
102 /// Gets or sets the close value.
104 /// <value>The close value.</value>
119 /// Gets or sets the high value.
121 /// <value>The high value.</value>
136 /// Gets or sets the low value.
138 /// <value>The low value.</value>
153 /// Gets or sets the open value.
155 /// <value>The open value.</value>
170 /// Gets or sets the X value (time).
172 /// <value>The X value.</value>