//============================================================================ //ZedGraph Class Library - A Flexible Line Graph/Bar Graph Library in C# //Copyright ?2005 John Champion // //This library is free software; you can redistribute it and/or //modify it under the terms of the GNU Lesser General Public //License as published by the Free Software Foundation; either //version 2.1 of the License, or (at your option) any later version. // //This library is distributed in the hope that it will be useful, //but WITHOUT ANY WARRANTY; without even the implied warranty of //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU //Lesser General Public License for more details. // //You should have received a copy of the GNU Lesser General Public //License along with this library; if not, write to the Free Software //Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA //============================================================================= using System; using System.Collections; using System.Text; using System.Drawing; using System.Runtime.Serialization; using System.Security.Permissions; namespace DrawGraph { /// /// The LinearAsOrdinalScale class inherits from the class, and implements /// the features specific to . /// /// /// LinearAsOrdinal is an ordinal axis that will have labels formatted with values from the actual data /// values of the first in the . /// Although the tics are labeled with real data values, the actual points will be /// evenly-spaced in spite of the data values. For example, if the X values of the first curve /// are 1, 5, and 100, then the tic labels will show 1, 5, and 100, but they will be equal /// distance from each other. /// /// /// John Champion /// $Revision: 1.10 $ $Date: 2007/04/16 00:03:02 $ [Serializable] class LinearAsOrdinalScale : Scale, ISerializable //, ICloneable { #region constructors /// /// Default constructor that defines the owner /// (containing object) for this new object. /// /// The owner, or containing object, of this instance public LinearAsOrdinalScale( Axis owner ) : base( owner ) { } /// /// The Copy Constructor /// /// The object from which to copy /// The object that will own the /// new instance of public LinearAsOrdinalScale( Scale rhs, Axis owner ) : base( rhs, owner ) { } /// /// Create a new clone of the current item, with a new owner assignment /// /// The new instance that will be /// the owner of the new Scale /// A new clone. public override Scale Clone( Axis owner ) { return new LinearAsOrdinalScale( this, owner ); } #endregion #region properties /// /// Return the for this , which is /// . /// public override AxisType Type { get { return AxisType.LinearAsOrdinal; } } #endregion #region methods /// /// Select a reasonable ordinal axis scale given a range of data values, with the expectation that /// linear values will be displayed. /// /// /// This method only applies to type axes, and it /// is called by the general method. For this type, /// the first curve is the "master", which contains the dates to be applied. /// On Exit: /// is set to scale minimum (if = true) /// is set to scale maximum (if = true) /// is set to scale step size (if = true) /// is set to scale minor step size (if = true) /// is set to a magnitude multiplier according to the data /// is set to the display format for the values (this controls the /// number of decimal places, whether there are thousands separators, currency types, etc.) /// /// A reference to the object /// associated with this /// /// A graphic device object to be drawn into. This is normally e.Graphics from the /// PaintEventArgs argument to the Paint() method. /// /// /// The scaling factor to be used for rendering objects. This is calculated and /// passed down by the parent object using the /// method, and is used to proportionally adjust /// font sizes, etc. according to the actual size of the graph. /// /// /// override public void PickScale( GraphPane pane, Graphics g, float scaleFactor ) { // call the base class first base.PickScale( pane, g, scaleFactor ); // First, get the date ranges from the first curve in the list double xMin; // = Double.MaxValue; double xMax; // = Double.MinValue; double yMin; // = Double.MaxValue; double yMax; // = Double.MinValue; double tMin = 0; double tMax = 1; foreach ( CurveItem curve in pane.CurveList ) { if ( ( _ownerAxis is Y2Axis && curve.IsY2Axis ) || ( _ownerAxis is YAxis && !curve.IsY2Axis ) || ( _ownerAxis is X2Axis && curve.IsX2Axis ) || ( _ownerAxis is XAxis && !curve.IsX2Axis ) ) { curve.GetRange( out xMin, out xMax, out yMin, out yMax, false, false, pane ); if ( _ownerAxis is XAxis || _ownerAxis is X2Axis ) { tMin = xMin; tMax = xMax; } else { tMin = yMin; tMax = yMax; } } } double range = Math.Abs( tMax - tMin ); // Now, set the axis range based on a ordinal scale base.PickScale( pane, g, scaleFactor ); OrdinalScale.PickScale( pane, g, scaleFactor, this ); SetScaleMag( tMin, tMax, range / Default.TargetXSteps ); } /// /// Make a value label for an . /// /// /// A reference to the object that is the parent or /// owner of this object. /// /// /// The zero-based, ordinal index of the label to be generated. For example, a value of 2 would /// cause the third value label on the axis to be generated. /// /// /// The numeric value associated with the label. This value is ignored for log () /// and text () type axes. /// /// The resulting value label as a override internal string MakeLabel( GraphPane pane, int index, double dVal ) { if ( _format == null ) _format = Scale.Default.Format; double val; int tmpIndex = (int) dVal - 1; if ( pane.CurveList.Count > 0 && pane.CurveList[0].Points.Count > tmpIndex ) { val = pane.CurveList[0].Points[tmpIndex].X; double scaleMult = Math.Pow( (double) 10.0, _mag ); return ( val / scaleMult ).ToString( _format ); } else return string.Empty; } #endregion #region Serialization /// /// Current schema value that defines the version of the serialized file /// public const int schema2 = 10; /// /// Constructor for deserializing objects /// /// A instance that defines the serialized data /// /// A instance that contains the serialized data /// protected LinearAsOrdinalScale( SerializationInfo info, StreamingContext context ) : base( info, context ) { // The schema value is just a file version parameter. You can use it to make future versions // backwards compatible as new member variables are added to classes int sch = info.GetInt32( "schema2" ); } /// /// Populates a instance with the data needed to serialize the target object /// /// A instance that defines the serialized data /// A instance that contains the serialized data [SecurityPermissionAttribute(SecurityAction.Demand,SerializationFormatter=true)] public override void GetObjectData( SerializationInfo info, StreamingContext context ) { base.GetObjectData( info, context ); info.AddValue( "schema2", schema2 ); } #endregion } }