You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
// (c) Copyright Microsoft Corporation.
|
|
// This source is subject to the Microsoft Public License (Ms-PL).
|
|
// Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
|
|
// All other rights reserved.
|
|
|
|
using System.Windows;
|
|
|
|
namespace System.Windows.Controls.DataVisualization.Charting
|
|
{
|
|
/// <summary>
|
|
/// A label used to display numeric axis values.
|
|
/// </summary>
|
|
public class NumericAxisLabel : AxisLabel
|
|
{
|
|
#if !SILVERLIGHT
|
|
/// <summary>
|
|
/// Initializes the static members of the NumericAxisLabel class.
|
|
/// </summary>
|
|
static NumericAxisLabel()
|
|
{
|
|
DefaultStyleKeyProperty.OverrideMetadata(typeof(NumericAxisLabel), new FrameworkPropertyMetadata(typeof(NumericAxisLabel)));
|
|
}
|
|
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// Instantiates a new instance of the NumericAxisLabel class.
|
|
/// </summary>
|
|
public NumericAxisLabel()
|
|
{
|
|
#if SILVERLIGHT
|
|
this.DefaultStyleKey = typeof(NumericAxisLabel);
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
|