LiveCharts.Dtos.CorePoint.CorePoint C# (CSharp) Method

CorePoint() public method

Initializes a new instance of CorePoint
public CorePoint ( double x, double y )
x double x coordinate
y double y coordinate
        public CorePoint(double x, double y)
            : this()
        {
            X = x;
            Y = y;
        }

Same methods

CorePoint::CorePoint ( CorePoint point )