mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-20 00:16:36 +08:00
202 lines
8.5 KiB
C#
202 lines
8.5 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.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Animation;
|
|
using LiveCharts.Charts;
|
|
using LiveCharts.Dtos;
|
|
|
|
namespace LiveCharts.Wpf.Points
|
|
{
|
|
internal class VerticalBezierPointView : HorizontalBezierPointView
|
|
{
|
|
public override void DrawOrMove(ChartPoint previousDrawn, ChartPoint current, int index, ChartCore chart)
|
|
{
|
|
var previosPbv = previousDrawn == null ? null : (VerticalBezierPointView) previousDrawn.View;
|
|
|
|
Container.Segments.Remove(Segment);
|
|
Container.Segments.Insert(index, Segment);
|
|
|
|
ValidArea = new CoreRectangle(current.ChartLocation.X - 7.5, current.ChartLocation.Y - 7.5, 15, 15);
|
|
|
|
if (IsNew)
|
|
{
|
|
if (previosPbv != null && !previosPbv.IsNew)
|
|
{
|
|
Segment.Point1 = previosPbv.Segment.Point3;
|
|
Segment.Point2 = previosPbv.Segment.Point3;
|
|
Segment.Point3 = previosPbv.Segment.Point3;
|
|
|
|
if (DataLabel != null)
|
|
{
|
|
Canvas.SetTop(DataLabel, Canvas.GetTop(previosPbv.DataLabel));
|
|
Canvas.SetLeft(DataLabel, Canvas.GetLeft(previosPbv.DataLabel));
|
|
}
|
|
|
|
if (Shape != null)
|
|
{
|
|
Canvas.SetTop(Shape, Canvas.GetTop(previosPbv.Shape));
|
|
Canvas.SetLeft(Shape, Canvas.GetLeft(previosPbv.Shape));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (current.SeriesView.IsFirstDraw)
|
|
{
|
|
Segment.Point1 = new Point(0, Data.Point1.Y);
|
|
Segment.Point2 = new Point(0, Data.Point2.Y);
|
|
Segment.Point3 = new Point(0, Data.Point3.Y);
|
|
|
|
if (Shape != null)
|
|
{
|
|
Canvas.SetTop(Shape, current.ChartLocation.Y - Shape.Height * .5);
|
|
Canvas.SetLeft(Shape, 0);
|
|
}
|
|
if (DataLabel != null)
|
|
{
|
|
Canvas.SetTop(DataLabel, current.ChartLocation.Y - DataLabel.ActualHeight * .5);
|
|
Canvas.SetLeft(DataLabel, 0);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
var startPoint = ((LineSeries) current.SeriesView).Splitters[0].Left.Point;
|
|
Segment.Point1 = startPoint;
|
|
Segment.Point2 = startPoint;
|
|
Segment.Point3 = startPoint;
|
|
|
|
if (Shape != null)
|
|
{
|
|
Canvas.SetTop(Shape, startPoint.Y - Shape.Height * .5);
|
|
Canvas.SetLeft(Shape, startPoint.X);
|
|
}
|
|
if (DataLabel != null)
|
|
{
|
|
Canvas.SetTop(DataLabel, startPoint.Y - DataLabel.ActualHeight * .5);
|
|
Canvas.SetLeft(DataLabel, startPoint.X);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (DataLabel != null && double.IsNaN(Canvas.GetLeft(DataLabel)))
|
|
{
|
|
Canvas.SetTop(DataLabel, current.ChartLocation.Y - DataLabel.ActualHeight * .5);
|
|
Canvas.SetLeft(DataLabel, 0);
|
|
}
|
|
|
|
#region No Animated
|
|
|
|
if (chart.View.DisableAnimations)
|
|
{
|
|
Segment.Point1 = Data.Point1.AsPoint();
|
|
Segment.Point2 = Data.Point2.AsPoint();
|
|
Segment.Point3 = Data.Point3.AsPoint();
|
|
|
|
if (HoverShape != null)
|
|
{
|
|
Canvas.SetLeft(HoverShape, current.ChartLocation.X - HoverShape.Width * .5);
|
|
Canvas.SetTop(HoverShape, current.ChartLocation.Y - HoverShape.Height * .5);
|
|
}
|
|
|
|
if (Shape != null)
|
|
{
|
|
Canvas.SetLeft(Shape, current.ChartLocation.X - Shape.Width * .5);
|
|
Canvas.SetTop(Shape, current.ChartLocation.Y - Shape.Height * .5);
|
|
}
|
|
|
|
if (DataLabel != null)
|
|
{
|
|
DataLabel.UpdateLayout();
|
|
var xl = CorrectXLabel(current.ChartLocation.X - DataLabel.ActualWidth * .5, chart);
|
|
var yl = CorrectYLabel(current.ChartLocation.Y - DataLabel.ActualHeight * .5, chart);
|
|
Canvas.SetLeft(DataLabel, xl);
|
|
Canvas.SetTop(DataLabel, yl);
|
|
}
|
|
return;
|
|
}
|
|
|
|
#endregion
|
|
|
|
Segment.BeginAnimation(BezierSegment.Point1Property,
|
|
new PointAnimation(Segment.Point1, Data.Point1.AsPoint(), chart.View.AnimationsSpeed));
|
|
Segment.BeginAnimation(BezierSegment.Point2Property,
|
|
new PointAnimation(Segment.Point2, Data.Point2.AsPoint(), chart.View.AnimationsSpeed));
|
|
Segment.BeginAnimation(BezierSegment.Point3Property,
|
|
new PointAnimation(Segment.Point3, Data.Point3.AsPoint(), chart.View.AnimationsSpeed));
|
|
|
|
if (Shape != null)
|
|
{
|
|
if (double.IsNaN(Canvas.GetLeft(Shape)))
|
|
{
|
|
Canvas.SetLeft(Shape, current.ChartLocation.X - Shape.Width * .5);
|
|
Canvas.SetTop(Shape, current.ChartLocation.Y - Shape.Height * .5);
|
|
}
|
|
else
|
|
{
|
|
Shape.BeginAnimation(Canvas.LeftProperty,
|
|
new DoubleAnimation(current.ChartLocation.X - Shape.Width * .5, chart.View.AnimationsSpeed));
|
|
Shape.BeginAnimation(Canvas.TopProperty,
|
|
new DoubleAnimation(current.ChartLocation.Y - Shape.Height * .5, chart.View.AnimationsSpeed));
|
|
}
|
|
}
|
|
|
|
if (DataLabel != null)
|
|
{
|
|
DataLabel.UpdateLayout();
|
|
|
|
var xl = CorrectXLabel(current.ChartLocation.X - DataLabel.ActualWidth * .5, chart);
|
|
var yl = CorrectYLabel(current.ChartLocation.Y - DataLabel.ActualHeight * .5, chart);
|
|
|
|
DataLabel.BeginAnimation(Canvas.LeftProperty,
|
|
new DoubleAnimation(xl, chart.View.AnimationsSpeed));
|
|
DataLabel.BeginAnimation(Canvas.TopProperty,
|
|
new DoubleAnimation(yl, chart.View.AnimationsSpeed));
|
|
}
|
|
|
|
if (HoverShape != null)
|
|
{
|
|
Canvas.SetLeft(HoverShape, current.ChartLocation.X - HoverShape.Width * .5);
|
|
Canvas.SetTop(HoverShape, current.ChartLocation.Y - HoverShape.Height * .5);
|
|
}
|
|
}
|
|
|
|
public override void OnHover(ChartPoint point)
|
|
{
|
|
var lineSeries = (LineSeries)point.SeriesView;
|
|
if (Shape != null) Shape.Fill = Shape.Stroke;
|
|
lineSeries.Path.StrokeThickness = lineSeries.StrokeThickness + 1;
|
|
}
|
|
|
|
public override void OnHoverLeave(ChartPoint point)
|
|
{
|
|
var lineSeries = (LineSeries)point.SeriesView;
|
|
if (Shape != null)
|
|
Shape.Fill = point.Fill == null
|
|
? lineSeries.PointForeground
|
|
: (Brush) point.Fill;
|
|
lineSeries.Path.StrokeThickness = lineSeries.StrokeThickness;
|
|
}
|
|
}
|
|
}
|