mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
375 lines
12 KiB
C#
375 lines
12 KiB
C#
//The MIT License(MIT)
|
|
|
|
//Copyright(c) 2016 Alberto Rodriguez & LiveCharts Contributors
|
|
|
|
//Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
//of this software and associated documentation files (the "Software"), to deal
|
|
//in the Software without restriction, including without limitation the rights
|
|
//to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
//copies of the Software, and to permit persons to whom the Software is
|
|
//furnished to do so, subject to the following conditions:
|
|
|
|
//The above copyright notice and this permission notice shall be included in all
|
|
//copies or substantial portions of the Software.
|
|
|
|
//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
//SOFTWARE.
|
|
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.Design.Serialization;
|
|
using System.Diagnostics;
|
|
using System.Windows.Forms.Integration;
|
|
using System.Windows.Media;
|
|
using LiveCharts.Events;
|
|
using LiveCharts.Wpf;
|
|
using UserControl = System.Windows.Controls.UserControl;
|
|
|
|
namespace LiveCharts.WinForms
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <seealso cref="System.Windows.Forms.Integration.ElementHost" />
|
|
[Designer("System.Windows.Forms.Design.ControlDesigner, System.Design")]
|
|
[DesignerSerializer("System.ComponentModel.Design.Serialization.TypeCodeDomSerializer , System.Design", "System.ComponentModel.Design.Serialization.CodeDomSerializer, System.Design")]
|
|
public class CartesianChart : ElementHost
|
|
{
|
|
/// <summary>
|
|
/// The WPF base
|
|
/// </summary>
|
|
protected readonly Wpf.CartesianChart WpfBase = new Wpf.CartesianChart();
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CartesianChart"/> class.
|
|
/// </summary>
|
|
public CartesianChart()
|
|
{
|
|
Child = WpfBase;
|
|
|
|
//workaround for windows 7 focus issue
|
|
//https://github.com/beto-rodriguez/Live-Charts/issues/515
|
|
HostContainer.MouseEnter += (sender, args) =>
|
|
{
|
|
Focus();
|
|
};
|
|
|
|
if (LicenseManager.UsageMode == LicenseUsageMode.Designtime)
|
|
{
|
|
WpfBase.Series = WpfBase.GetDesignerModeCollection();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Occurs when the users clicks any point in the chart
|
|
/// </summary>
|
|
public event DataClickHandler DataClick
|
|
{
|
|
add { WpfBase.DataClick += value; }
|
|
remove { WpfBase.DataClick += value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Occurs when the users hovers over any point in the chart
|
|
/// </summary>
|
|
public event DataHoverHandler DataHover
|
|
{
|
|
add { WpfBase.DataHover += value; }
|
|
remove { WpfBase.DataHover += value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Occurs every time the chart updates
|
|
/// </summary>
|
|
public event UpdaterTickHandler UpdaterTick
|
|
{
|
|
add { WpfBase.UpdaterTick += value; }
|
|
remove { WpfBase.UpdaterTick += value; }
|
|
}
|
|
|
|
#region ChartProperties
|
|
|
|
/// <summary>
|
|
/// Gets the base.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The base.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public Wpf.CartesianChart Base { get { return WpfBase; } }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the axis y.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The axis y.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public AxesCollection AxisY
|
|
{
|
|
get { return WpfBase.AxisY; }
|
|
set { WpfBase.AxisY = value; }
|
|
}
|
|
/// <summary>
|
|
/// Gets or sets the axis x.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The axis x.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public AxesCollection AxisX
|
|
{
|
|
get { return WpfBase.AxisX; }
|
|
set { WpfBase.AxisX = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the default legend.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The default legend.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public UserControl DefaultLegend
|
|
{
|
|
get { return WpfBase.ChartLegend; }
|
|
set { WpfBase.ChartLegend = value; }
|
|
}
|
|
/// <summary>
|
|
/// Gets or sets the zoom.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The zoom.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public ZoomingOptions Zoom
|
|
{
|
|
get { return WpfBase.Zoom; }
|
|
set { WpfBase.Zoom = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the pan.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The pan.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public PanningOptions Pan
|
|
{
|
|
get { return WpfBase.Pan; }
|
|
set { WpfBase.Pan = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the legend location.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The legend location.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public LegendLocation LegendLocation
|
|
{
|
|
get { return WpfBase.LegendLocation; }
|
|
set { WpfBase.LegendLocation = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the series.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The series.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public SeriesCollection Series
|
|
{
|
|
get { return WpfBase.Series; }
|
|
set { WpfBase.Series = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the animations speed.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The animations speed.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public TimeSpan AnimationsSpeed
|
|
{
|
|
get { return WpfBase.AnimationsSpeed; }
|
|
set { WpfBase.AnimationsSpeed = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether [disable animations].
|
|
/// </summary>
|
|
/// <value>
|
|
/// <c>true</c> if [disable animations]; otherwise, <c>false</c>.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public bool DisableAnimations
|
|
{
|
|
get { return WpfBase.DisableAnimations; }
|
|
set { WpfBase.DisableAnimations = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the data tooltip.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The data tooltip.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public UserControl DataTooltip
|
|
{
|
|
get { return WpfBase.DataTooltip; }
|
|
set { WpfBase.DataTooltip = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this <see cref="CartesianChart"/> is hoverable.
|
|
/// </summary>
|
|
/// <value>
|
|
/// <c>true</c> if hoverable; otherwise, <c>false</c>.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public bool Hoverable
|
|
{
|
|
get { return Base.Hoverable; }
|
|
set { Base.Hoverable = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the scroll mode.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The scroll mode.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public ScrollMode ScrollMode { get { return Base.ScrollMode; } set { Base.ScrollMode = value; } }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the scroll horizontal from.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The scroll horizontal from.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public double ScrollHorizontalFrom
|
|
{
|
|
get { return Base.ScrollHorizontalFrom; }
|
|
set { Base.ScrollHorizontalFrom = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the scroll horizontal to.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The scroll horizontal to.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public double ScrollHorizontalTo
|
|
{
|
|
get { return Base.ScrollHorizontalTo; }
|
|
set { Base.ScrollHorizontalTo = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the scroll vertical from.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The scroll vertical from.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public double ScrollVerticalFrom
|
|
{
|
|
get { return Base.ScrollVerticalFrom; }
|
|
set { Base.ScrollVerticalFrom = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the scroll vertical to.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The scroll vertical to.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public double ScrollVerticalTo
|
|
{
|
|
get { return Base.ScrollVerticalTo; }
|
|
set { Base.ScrollVerticalTo = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the scroll bar fill.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The scroll bar fill.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public Brush ScrollBarFill
|
|
{
|
|
get { return Base.ScrollBarFill; }
|
|
set { Base.ScrollBarFill = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the background.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The background.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public Brush Background
|
|
{
|
|
get { return WpfBase.Background; }
|
|
set { WpfBase.Background = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the visual elements.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The visual elements.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public VisualElementsCollection VisualElements
|
|
{
|
|
get { return WpfBase.VisualElements; }
|
|
set { WpfBase.VisualElements = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the state of the updater.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The state of the updater.
|
|
/// </value>
|
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
|
|
public UpdaterState UpdaterState
|
|
{
|
|
get { return WpfBase.UpdaterState; }
|
|
set { WpfBase.UpdaterState = value; }
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Updates the specified restart view.
|
|
/// </summary>
|
|
/// <param name="restartView">if set to <c>true</c> [restart view].</param>
|
|
/// <param name="force">if set to <c>true</c> [force].</param>
|
|
public void Update(bool restartView, bool force)
|
|
{
|
|
WpfBase.Update(restartView, force);
|
|
}
|
|
#endregion
|
|
}
|
|
} |