OxyPlot.Annotations.PolylineAnnotation.ps1
Set-StrictMode -Version 3 <# .SYNOPSIS Represents an annotation that shows a polyline. .PARAMETER Text Sets the annotation text. .PARAMETER TextPosition Sets the position of the text. If the value is DataPoint.Undefined, the default position of the text will be used. .PARAMETER TextHorizontalAlignment Sets the horizontal alignment of the text. .PARAMETER TextVerticalAlignment Sets the vertical alignment of the text. .PARAMETER TextRotation Sets the rotation of the text. .PARAMETER Layer Sets the rendering layer of the annotation. The default value is OxyPlot.Annotations.AnnotationLayer.AboveSeries. .PARAMETER XAxis Gets the X axis. .PARAMETER XAxisKey Sets the X axis key. .PARAMETER YAxis Gets the Y axis. .PARAMETER YAxisKey Sets the Y axis key. .PARAMETER Color Sets the color of the line. .PARAMETER LineJoin Sets the line join. .PARAMETER LineStyle Sets the line style. .PARAMETER MaximumX Sets the maximum X coordinate for the line. .PARAMETER MaximumY Sets the maximum Y coordinate for the line. .PARAMETER MinimumX Sets the minimum X coordinate for the line. .PARAMETER MinimumY Sets the minimum Y coordinate for the line. .PARAMETER StrokeThickness Sets the stroke thickness. .PARAMETER TextMargin Sets the text margin (along the line). .PARAMETER TextPadding Sets the text padding (in the direction of the text). .PARAMETER TextOrientation Sets the text orientation. .PARAMETER TextLinePosition Sets the text position relative to the line. Positions smaller than 0.25 are left aligned at the start of the line Positions larger than 0.75 are right aligned at the end of the line Other positions are center aligned at the specified position .PARAMETER ClipText Sets a value indicating whether to clip the text within the plot area. .PARAMETER ClipByXAxis Sets a value indicating whether to clip the annotation line by the X axis range. .PARAMETER ClipByYAxis Sets a value indicating whether to clip the annotation line by the Y axis range. .PARAMETER Aliased Sets a value indicating whether the path is aliased. .PARAMETER ActualMinimumX Sets the actual minimum value on the x axis. .PARAMETER ActualMinimumY Sets the actual minimum value on the y axis. .PARAMETER ActualMaximumX Sets the actual maximum value on the x axis. .PARAMETER ActualMaximumY Sets the actual maximum value on the y axis. .PARAMETER Points Gets the points. .PARAMETER MinimumSegmentLength Sets the minimum length of the segment. Increasing this number will increase performance, but make the curve less accurate. .PARAMETER Smooth Sets a value indicating whether this OxyPlot.Annotations.PolylineAnnotation is smooth. .PARAMETER Parent Gets the parent model of the element. .PARAMETER Font Sets the font. The default is null (use OxyPlot.PlotModel.DefaultFont. If the value is null, the DefaultFont of the parent PlotModel will be used. .PARAMETER FontSize Sets the size of the font. The default is double.NaN (use OxyPlot.PlotModel.DefaultFontSize). If the value is NaN, the DefaultFontSize of the parent PlotModel will be used. .PARAMETER FontWeight Sets the font weight. The default is FontWeights.Normal. .PARAMETER PlotModel Gets the parent OxyPlot.PlotElement.PlotModel. .PARAMETER Tag Sets an arbitrary object value that can be used to store custom information about this plot element. The default is null. This property is analogous to Tag properties in other Microsoft programming models. Tag is intended to provide a pre-existing property location where you can store some basic custom information about any PlotElement without requiring you to subclass an element. .PARAMETER TextColor Sets the color of the text. The default is OxyColors.Automatic (use OxyPlot.PlotModel.TextColor). If the value is OxyColors.Automatic, the TextColor of the parent PlotModel will be used. .PARAMETER ToolTip Sets the tool tip. The default is null. .PARAMETER ActualFont Gets the actual font. .PARAMETER ActualFontSize Gets the actual size of the font. .PARAMETER ActualFontWeight Gets the actual font weight. .PARAMETER ActualTextColor Gets the actual color of the text. .PARAMETER ActualCulture Gets the actual culture. The culture is defined in the parent PlotModel. .PARAMETER Selectable Sets a value indicating whether this element can be selected. The default is true. .PARAMETER SelectionMode Sets the selection mode of items in this element. The default is SelectionMode.All. This is only used by the select/unselect functionality, not by the rendering. .PARAMETER ActualSelectedColor Gets the actual selection color. .DESCRIPTION This cmdlet creates an OxyPlot.Annotations.PolylineAnnotation object. #> function New-OxyPolylineAnnotation { [cmdletbinding()] [OutputType([OxyPlot.Annotations.PolylineAnnotation])] param( [object]$MinimumSegmentLength, [System.Boolean]$Smooth, [ValidatePattern('AliceBlue|AntiqueWhite|Aqua|Aquamarine|Automatic|Azure|Beige|Bisque|Black|BlanchedAlmond|Blue|BlueViolet|Brown|BurlyWood|CadetBlue|Chartreuse|Chocolate|Coral|CornflowerBlue|Cornsilk|Crimson|Cyan|DarkBlue|DarkCyan|DarkGoldenrod|DarkGray|DarkGreen|DarkKhaki|DarkMagenta|DarkOliveGreen|DarkOrange|DarkOrchid|DarkRed|DarkSalmon|DarkSeaGreen|DarkSlateBlue|DarkSlateGray|DarkTurquoise|DarkViolet|DeepPink|DeepSkyBlue|DimGray|DodgerBlue|Firebrick|FloralWhite|ForestGreen|Fuchsia|Gainsboro|GhostWhite|Gold|Goldenrod|Gray|Green|GreenYellow|Honeydew|HotPink|IndianRed|Indigo|Ivory|Khaki|Lavender|LavenderBlush|LawnGreen|LemonChiffon|LightBlue|LightCoral|LightCyan|LightGoldenrodYellow|LightGray|LightGreen|LightPink|LightSalmon|LightSeaGreen|LightSkyBlue|LightSlateGray|LightSteelBlue|LightYellow|Lime|LimeGreen|Linen|Magenta|Maroon|MediumAquamarine|MediumBlue|MediumOrchid|MediumPurple|MediumSeaGreen|MediumSlateBlue|MediumSpringGreen|MediumTurquoise|MediumVioletRed|MidnightBlue|MintCream|MistyRose|Moccasin|NavajoWhite|Navy|OldLace|Olive|OliveDrab|Orange|OrangeRed|Orchid|PaleGoldenrod|PaleGreen|PaleTurquoise|PaleVioletRed|PapayaWhip|PeachPuff|Peru|Pink|Plum|PowderBlue|Purple|Red|RosyBrown|RoyalBlue|SaddleBrown|Salmon|SandyBrown|SeaGreen|SeaShell|Sienna|Silver|SkyBlue|SlateBlue|SlateGray|Snow|SpringGreen|SteelBlue|Tan|Teal|Thistle|Tomato|Transparent|Turquoise|Undefined|Violet|Wheat|White|WhiteSmoke|Yellow|YellowGreen|(#?[0-9a-f]{1,8})')][string]$Color, [OxyPlot.LineJoin]$LineJoin, [OxyPlot.LineStyle]$LineStyle, [object]$MaximumX, [object]$MaximumY, [object]$MinimumX, [object]$MinimumY, [object]$StrokeThickness, [object]$TextMargin, [object]$TextPadding, [OxyPlot.Annotations.AnnotationTextOrientation]$TextOrientation, [object]$TextLinePosition, [System.Boolean]$ClipText, [System.Boolean]$ClipByXAxis, [System.Boolean]$ClipByYAxis, [System.String]$Text, [OxyPlot.DataPoint]$TextPosition, [OxyPlot.HorizontalAlignment]$TextHorizontalAlignment, [OxyPlot.VerticalAlignment]$TextVerticalAlignment, [object]$TextRotation, [OxyPlot.Annotations.AnnotationLayer]$Layer, [System.String]$XAxisKey, [System.String]$YAxisKey, [System.String]$Font, [object]$FontSize, [object]$FontWeight, [System.Object]$Tag, [ValidatePattern('AliceBlue|AntiqueWhite|Aqua|Aquamarine|Automatic|Azure|Beige|Bisque|Black|BlanchedAlmond|Blue|BlueViolet|Brown|BurlyWood|CadetBlue|Chartreuse|Chocolate|Coral|CornflowerBlue|Cornsilk|Crimson|Cyan|DarkBlue|DarkCyan|DarkGoldenrod|DarkGray|DarkGreen|DarkKhaki|DarkMagenta|DarkOliveGreen|DarkOrange|DarkOrchid|DarkRed|DarkSalmon|DarkSeaGreen|DarkSlateBlue|DarkSlateGray|DarkTurquoise|DarkViolet|DeepPink|DeepSkyBlue|DimGray|DodgerBlue|Firebrick|FloralWhite|ForestGreen|Fuchsia|Gainsboro|GhostWhite|Gold|Goldenrod|Gray|Green|GreenYellow|Honeydew|HotPink|IndianRed|Indigo|Ivory|Khaki|Lavender|LavenderBlush|LawnGreen|LemonChiffon|LightBlue|LightCoral|LightCyan|LightGoldenrodYellow|LightGray|LightGreen|LightPink|LightSalmon|LightSeaGreen|LightSkyBlue|LightSlateGray|LightSteelBlue|LightYellow|Lime|LimeGreen|Linen|Magenta|Maroon|MediumAquamarine|MediumBlue|MediumOrchid|MediumPurple|MediumSeaGreen|MediumSlateBlue|MediumSpringGreen|MediumTurquoise|MediumVioletRed|MidnightBlue|MintCream|MistyRose|Moccasin|NavajoWhite|Navy|OldLace|Olive|OliveDrab|Orange|OrangeRed|Orchid|PaleGoldenrod|PaleGreen|PaleTurquoise|PaleVioletRed|PapayaWhip|PeachPuff|Peru|Pink|Plum|PowderBlue|Purple|Red|RosyBrown|RoyalBlue|SaddleBrown|Salmon|SandyBrown|SeaGreen|SeaShell|Sienna|Silver|SkyBlue|SlateBlue|SlateGray|Snow|SpringGreen|SteelBlue|Tan|Teal|Thistle|Tomato|Transparent|Turquoise|Undefined|Violet|Wheat|White|WhiteSmoke|Yellow|YellowGreen|(#?[0-9a-f]{1,8})')][string]$TextColor, [System.String]$ToolTip, [System.Boolean]$Selectable, [OxyPlot.SelectionMode]$SelectionMode, [OxyPlot.Model]$Parent, [hashtable]$Options = @{}, [string]$Style = "default", [OxyPlot.PlotModel]$AddTo ) $a = New-Object OxyPlot.Annotations.PolylineAnnotation Apply-OxyStyle $a $Style $MyInvocation $props = $PROPERTY_HASH["OxyPlot.Annotations.PolylineAnnotation"] Assign-ParametersToProperties $props $PSBoundParameters $Options $a if ($AddTo -ne $null) { $AddTo.Annotations.Add($a) $AddTo.InvalidatePlot($false) } else { $a } } |