mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-16 06:26:37 +08:00
200 lines
7.9 KiB
C#
200 lines
7.9 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.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Media.Animation;
|
|
using System.Windows.Shapes;
|
|
using LiveCharts.Charts;
|
|
using LiveCharts.Definitions.Points;
|
|
|
|
namespace LiveCharts.Wpf.Points
|
|
{
|
|
internal class CandlePointView : PointView, IOhlcPointView
|
|
{
|
|
public Line HighToLowLine { get; set; }
|
|
public Rectangle OpenToCloseRectangle { get; set; }
|
|
public double Open { get; set; }
|
|
public double High { get; set; }
|
|
public double Close { get; set; }
|
|
public double Low { get; set; }
|
|
public double Width { get; set; }
|
|
public double Left { get; set; }
|
|
public double StartReference { get; set; }
|
|
|
|
public override void DrawOrMove(ChartPoint previousDrawn, ChartPoint current, int index, ChartCore chart)
|
|
{
|
|
var center = Left + Width / 2;
|
|
|
|
if (IsNew)
|
|
{
|
|
HighToLowLine.X1 = center;
|
|
HighToLowLine.X2 = center;
|
|
HighToLowLine.Y1 = StartReference;
|
|
HighToLowLine.Y2 = StartReference;
|
|
|
|
Canvas.SetTop(OpenToCloseRectangle, (Open + Close) / 2);
|
|
Canvas.SetLeft(OpenToCloseRectangle, Left);
|
|
|
|
OpenToCloseRectangle.Width = Width;
|
|
OpenToCloseRectangle.Height = 0;
|
|
}
|
|
|
|
if (DataLabel != null && double.IsNaN(Canvas.GetLeft(DataLabel)))
|
|
{
|
|
Canvas.SetTop(DataLabel, current.ChartLocation.Y);
|
|
Canvas.SetLeft(DataLabel, current.ChartLocation.X);
|
|
}
|
|
|
|
if (HoverShape != null)
|
|
{
|
|
var h = Math.Abs(High - Low);
|
|
HoverShape.Width = Width;
|
|
HoverShape.Height = h > 10 ? h : 10;
|
|
Canvas.SetLeft(HoverShape, Left);
|
|
Canvas.SetTop(HoverShape, High);
|
|
}
|
|
|
|
if (chart.View.DisableAnimations)
|
|
{
|
|
HighToLowLine.Y1 = High;
|
|
HighToLowLine.Y2 = Low;
|
|
HighToLowLine.X1 = center;
|
|
HighToLowLine.X2 = center;
|
|
|
|
OpenToCloseRectangle.Width = Width;
|
|
OpenToCloseRectangle.Height = Math.Abs(Open - Close);
|
|
|
|
Canvas.SetTop(OpenToCloseRectangle, Math.Min(Open, Close));
|
|
Canvas.SetLeft(OpenToCloseRectangle, Left);
|
|
|
|
if (DataLabel != null)
|
|
{
|
|
DataLabel.UpdateLayout();
|
|
|
|
var cx = CorrectXLabel(current.ChartLocation.X - DataLabel.ActualHeight * .5, chart);
|
|
var cy = CorrectYLabel(current.ChartLocation.Y - DataLabel.ActualWidth * .5, chart);
|
|
|
|
Canvas.SetTop(DataLabel, cy);
|
|
Canvas.SetLeft(DataLabel, cx);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
var candleSeries = (CandleSeries) current.SeriesView;
|
|
|
|
if (candleSeries.ColoringRules == null)
|
|
{
|
|
if (current.Open <= current.Close)
|
|
{
|
|
HighToLowLine.Stroke = candleSeries.IncreaseBrush;
|
|
OpenToCloseRectangle.Fill = candleSeries.IncreaseBrush;
|
|
OpenToCloseRectangle.Stroke = candleSeries.IncreaseBrush;
|
|
}
|
|
else
|
|
{
|
|
HighToLowLine.Stroke = candleSeries.DecreaseBrush;
|
|
OpenToCloseRectangle.Fill = candleSeries.DecreaseBrush;
|
|
OpenToCloseRectangle.Stroke = candleSeries.DecreaseBrush;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
foreach (var rule in candleSeries.ColoringRules)
|
|
{
|
|
if (!rule.Condition(current, previousDrawn)) continue;
|
|
|
|
HighToLowLine.Stroke = rule.Stroke;
|
|
OpenToCloseRectangle.Fill = rule.Fill;
|
|
OpenToCloseRectangle.Stroke = rule.Stroke;
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
var animSpeed = chart.View.AnimationsSpeed;
|
|
|
|
if (DataLabel != null)
|
|
{
|
|
DataLabel.UpdateLayout();
|
|
|
|
var cx = CorrectXLabel(current.ChartLocation.X - DataLabel.ActualWidth * .5, chart);
|
|
var cy = CorrectYLabel(current.ChartLocation.Y - DataLabel.ActualHeight * .5, chart);
|
|
|
|
DataLabel.BeginAnimation(Canvas.LeftProperty, new DoubleAnimation(cx, animSpeed));
|
|
DataLabel.BeginAnimation(Canvas.TopProperty, new DoubleAnimation(cy, animSpeed));
|
|
}
|
|
|
|
HighToLowLine.BeginAnimation(Line.X1Property, new DoubleAnimation(center, animSpeed));
|
|
HighToLowLine.BeginAnimation(Line.X2Property, new DoubleAnimation(center, animSpeed));
|
|
HighToLowLine.BeginAnimation(Line.Y1Property, new DoubleAnimation(High, animSpeed));
|
|
HighToLowLine.BeginAnimation(Line.Y2Property, new DoubleAnimation(Low, animSpeed));
|
|
|
|
OpenToCloseRectangle.BeginAnimation(Canvas.LeftProperty,
|
|
new DoubleAnimation(Left, animSpeed));
|
|
OpenToCloseRectangle.BeginAnimation(Canvas.TopProperty,
|
|
new DoubleAnimation(Math.Min(Open, Close), animSpeed));
|
|
|
|
OpenToCloseRectangle.BeginAnimation(FrameworkElement.WidthProperty,
|
|
new DoubleAnimation(Width, animSpeed));
|
|
OpenToCloseRectangle.BeginAnimation(FrameworkElement.HeightProperty,
|
|
new DoubleAnimation(Math.Max(Math.Abs(Open - Close), OpenToCloseRectangle.StrokeThickness), animSpeed));
|
|
|
|
}
|
|
|
|
public override void RemoveFromView(ChartCore chart)
|
|
{
|
|
chart.View.RemoveFromDrawMargin(HoverShape);
|
|
chart.View.RemoveFromDrawMargin(OpenToCloseRectangle);
|
|
chart.View.RemoveFromDrawMargin(HighToLowLine);
|
|
chart.View.RemoveFromDrawMargin(DataLabel);
|
|
}
|
|
|
|
protected double CorrectXLabel(double desiredPosition, ChartCore chart)
|
|
{
|
|
if (desiredPosition + DataLabel.ActualWidth * .5 < -0.1) return -DataLabel.ActualWidth;
|
|
|
|
if (desiredPosition + DataLabel.ActualWidth > chart.DrawMargin.Width)
|
|
desiredPosition -= desiredPosition + DataLabel.ActualWidth - chart.DrawMargin.Width + 2;
|
|
|
|
if (desiredPosition < 0) desiredPosition = 0;
|
|
|
|
return desiredPosition;
|
|
}
|
|
|
|
protected double CorrectYLabel(double desiredPosition, ChartCore chart)
|
|
{
|
|
//desiredPosition -= Ellipse.ActualHeight * .5 + DataLabel.ActualHeight * .5 + 2;
|
|
|
|
if (desiredPosition + DataLabel.ActualHeight > chart.DrawMargin.Height)
|
|
desiredPosition -= desiredPosition + DataLabel.ActualHeight - chart.DrawMargin.Height + 2;
|
|
|
|
if (desiredPosition < 0) desiredPosition = 0;
|
|
|
|
return desiredPosition;
|
|
}
|
|
|
|
}
|
|
}
|