IPathGeometry<TDrawingContext, TPathArgs>
Interface

Assembly LiveChartsCore
Namespace LiveChartsCore.Drawing

Summary:
Defines a path geometry in the user interface.

Type parameters:
TDrawingContext The type of the drawing context.
TPathArgs The type of the path.
Implements:
IDrawable<TDrawingContext>
Derived:

Properties

Gets or sets a value indicating whether the path is closed.
Type: Boolean
Gets the first linked node.
Type: LinkedListNode<IPathCommand<TPathArgs>>
Gets the last linked node.
Type: LinkedListNode<IPathCommand<TPathArgs>>
Gets current commands count.
Type: Int32

Methods

// Adds a path command at the end.
IPathCommand<TPathArgs> command// The command.
)
// Adds a path command at the beginning.
IPathCommand<TPathArgs> command// The command.
)
// Adds a command after the given liked node.
LinkedListNode<IPathCommand<TPathArgs>> node, // The linked node.
IPathCommand<TPathArgs> command//
)
// Adds a path command before the given linked node.
LinkedListNode<IPathCommand<TPathArgs>> node, // The linked node.
IPathCommand<TPathArgs> command//
)
// Removes a path command.
IPathCommand<TPathArgs> command// The command.
)
// Removes the specified node.
LinkedListNode<IPathCommand<TPathArgs>> node// The node.
)
// Determines whether the specified command is contained in the current path.
IPathCommand<TPathArgs> command// The command.
)
// Clears the commands.