AreaMark
[Serializable]public class AreaMark : ChartMark, IChartMarkCreates a range AreaMark spanning from yStart to yEnd at the given x position. Swift Charts equivalent: AreaMark(x: .Value(“X”, x), yStart: .Value(“Start”, yStart), yEnd: .Value(“End”, yEnd))
Properties
Section titled “Properties”
MarkType
Section titled “MarkType”public override ChartType MarkType { get; }No description is available for this member.
Returns
ChartGuru.ChartType — No return description is available.
Interpolation
Section titled “Interpolation”public InterpolationMethod Interpolation { get; set; }No description is available for this member.
Returns
ChartGuru.InterpolationMethod — No return description is available.
Baseline
Section titled “Baseline”public float Baseline { get; set; }No description is available for this member.
Returns
System.Single — No return description is available.
ShowLine
Section titled “ShowLine”public bool ShowLine { get; set; }No description is available for this member.
Returns
System.Boolean — No return description is available.
LineWidth
Section titled “LineWidth”public float LineWidth { get; set; }No description is available for this member.
Returns
System.Single — No return description is available.
LineColor
Section titled “LineColor”public Color LineColor { get; set; }No description is available for this member.
Returns
UnityEngine.Color — No return description is available.
UseGradientForLine
Section titled “UseGradientForLine”public bool UseGradientForLine { get; set; }No description is available for this member.
Returns
System.Boolean — No return description is available.
public float[] Dash { get; set; }No description is available for this member.
Returns
System.Single[] — No return description is available.
DashPhase
Section titled “DashPhase”public float DashPhase { get; set; }No description is available for this member.
Returns
System.Single — No return description is available.
LineStyleKey
Section titled “LineStyleKey”public object LineStyleKey { get; }No description is available for this member.
Returns
System.Object — No return description is available.
StackingMethod
Section titled “StackingMethod”public MarkStackingMethod StackingMethod { get; set; }No description is available for this member.
Returns
ChartGuru.MarkStackingMethod — No return description is available.
ShowGradient
Section titled “ShowGradient”public bool ShowGradient { get; set; }No description is available for this member.
Returns
System.Boolean — No return description is available.
GradientTopColor
Section titled “GradientTopColor”public Color GradientTopColor { get; set; }No description is available for this member.
Returns
UnityEngine.Color — No return description is available.
ShowPoints
Section titled “ShowPoints”public bool ShowPoints { get; set; }No description is available for this member.
Returns
System.Boolean — No return description is available.
PointSymbol
Section titled “PointSymbol”public SymbolShape PointSymbol { get; set; }No description is available for this member.
Returns
ChartGuru.SymbolShape — No return description is available.
PointSize
Section titled “PointSize”public float PointSize { get; set; }No description is available for this member.
Returns
System.Single — No return description is available.
PointStroked
Section titled “PointStroked”public bool PointStroked { get; set; }True when point symbols render as a stroked outline rather than filled.
Returns
System.Boolean — No return description is available.
PointStrokeWidth
Section titled “PointStrokeWidth”public float PointStrokeWidth { get; set; }Stroke width in pixels for stroked point symbols.
Returns
System.Single — No return description is available.
SymbolKey
Section titled “SymbolKey”public object SymbolKey { get; }No description is available for this member.
Returns
System.Object — No return description is available.
SymbolSizeKey
Section titled “SymbolSizeKey”public object SymbolSizeKey { get; }No description is available for this member.
Returns
System.Object — No return description is available.
Constructors
Section titled “Constructors”
AreaMark()
Section titled “AreaMark()”public AreaMark()No description is available for this member.
AreaMark(float, float)
Section titled “AreaMark(float, float)”public AreaMark(float x, float y)No description is available for this member.
Parameters
| Name | Type | Description |
|---|---|---|
x |
System.Single | |
y |
System.Single | |
AreaMark(DataPoint)
Section titled “AreaMark(DataPoint)”public AreaMark(DataPoint point)No description is available for this member.
Parameters
| Name | Type | Description |
|---|---|---|
point |
ChartGuru.DataPoint | |
AreaMark(PlottableValueRef, PlottableValueRef, int)
Section titled “AreaMark(PlottableValueRef, PlottableValueRef, int)”public AreaMark(PlottableValueRef x, PlottableValueRef y, int index = 0)No description is available for this member.
Parameters
| Name | Type | Description |
|---|---|---|
x |
ChartGuru.PlottableValueRef | |
y |
ChartGuru.PlottableValueRef | |
index |
System.Int32 | |
AreaMark(float, float, float)
Section titled “AreaMark(float, float, float)”public AreaMark(float x, float yStart, float yEnd)Creates a range AreaMark spanning from yStart to yEnd at the given x position. Swift Charts equivalent: AreaMark(x: .Value(“X”, x), yStart: .Value(“Start”, yStart), yEnd: .Value(“End”, yEnd))
Parameters
| Name | Type | Description |
|---|---|---|
x |
System.Single | The x position |
yStart |
System.Single | The lower Y value |
yEnd |
System.Single | The upper Y value |
AreaMark(PlottableValueRef, PlottableValueRef, PlottableValueRef, int)
Section titled “AreaMark(PlottableValueRef, PlottableValueRef, PlottableValueRef, int)”public AreaMark(PlottableValueRef x, PlottableValueRef yStart, PlottableValueRef yEnd, int index = 0)No description is available for this member.
Parameters
| Name | Type | Description |
|---|---|---|
x |
ChartGuru.PlottableValueRef | |
yStart |
ChartGuru.PlottableValueRef | |
yEnd |
ChartGuru.PlottableValueRef | |
index |
System.Int32 |
Methods
Section titled “Methods”
InterpolationMethod(InterpolationMethod)
Section titled “InterpolationMethod(InterpolationMethod)”public AreaMark InterpolationMethod(InterpolationMethod method)Sets the interpolation method for this area. Swift Charts equivalent: .InterpolationMethod(.catmullRom)
Parameters
| Name | Type | Description |
|---|---|---|
method |
ChartGuru.InterpolationMethod |
Returns
ChartGuru.AreaMark — No return description is available.
Stacking(MarkStackingMethod)
Section titled “Stacking(MarkStackingMethod)”public AreaMark Stacking(MarkStackingMethod method)Sets the stacking method for this area. Swift Charts equivalent: AreaMark(…, stacking: .center)
Parameters
| Name | Type | Description |
|---|---|---|
method |
ChartGuru.MarkStackingMethod |
Returns
ChartGuru.AreaMark — No return description is available.
LineStyle(float)
Section titled “LineStyle(float)”public AreaMark LineStyle(float lineWidth)Sets the line width for the area outline. Swift Charts equivalent: .LineStyle(StrokeStyle(lineWidth:))
Parameters
| Name | Type | Description |
|---|---|---|
lineWidth |
System.Single |
Returns
ChartGuru.AreaMark — No return description is available.
LineStyle(StrokeStyle)
Section titled “LineStyle(StrokeStyle)”public AreaMark LineStyle(StrokeStyle style)Sets the outline stroke style for this area. Swift Charts equivalent: .LineStyle(StrokeStyle(lineWidth:dash:))
Parameters
| Name | Type | Description |
|---|---|---|
style |
ChartGuru.StrokeStyle |
Returns
ChartGuru.AreaMark — No return description is available.
LineStyle(PlottableValueRef)
Section titled “LineStyle(PlottableValueRef)”public AreaMark LineStyle(PlottableValueRef value)Encodes a value into the line style scale for automatic outline styling. Swift Charts equivalent: .LineStyle(by: .Value(“Category”, category))
Parameters
| Name | Type | Description |
|---|---|---|
value |
ChartGuru.PlottableValueRef |
Returns
ChartGuru.AreaMark — No return description is available.
Symbol(SymbolShape)
Section titled “Symbol(SymbolShape)”public AreaMark Symbol(SymbolShape shape)Enables point symbols on the area boundary line. Swift Charts equivalent: .Symbol(.circle)
Parameters
| Name | Type | Description |
|---|---|---|
shape |
ChartGuru.SymbolShape |
Returns
ChartGuru.AreaMark — No return description is available.
Symbol(SymbolShape, float)
Section titled “Symbol(SymbolShape, float)”public AreaMark Symbol(SymbolShape shape, float size)Enables point symbols with a specific shape and size on the area boundary line.
Parameters
| Name | Type | Description |
|---|---|---|
shape |
ChartGuru.SymbolShape | |
size |
System.Single |
Returns
ChartGuru.AreaMark — No return description is available.
Symbol(SymbolStyle)
Section titled “Symbol(SymbolStyle)”public AreaMark Symbol(SymbolStyle style)Enables stroked-border point symbols on the area boundary line.
Swift Charts equivalent: .Symbol(.circle.StrokeBorder(lineWidth: 2)).
Parameters
| Name | Type | Description |
|---|---|---|
style |
ChartGuru.SymbolStyle |
Returns
ChartGuru.AreaMark — No return description is available.
Symbol(PlottableValueRef)
Section titled “Symbol(PlottableValueRef)”public AreaMark Symbol(PlottableValueRef value)Encodes a value into the symbol scale for automatic symbol styling. Swift Charts equivalent: .Symbol(by: .Value(“Category”, category))
Parameters
| Name | Type | Description |
|---|---|---|
value |
ChartGuru.PlottableValueRef |
Returns
ChartGuru.AreaMark — No return description is available.
SymbolSize(float)
Section titled “SymbolSize(float)”public AreaMark SymbolSize(float size)Sets the point size for area symbols.
Parameters
| Name | Type | Description |
|---|---|---|
size |
System.Single |
Returns
ChartGuru.AreaMark — No return description is available.
GetMorphTargets(ChartType, Rect)
Section titled “GetMorphTargets(ChartType, Rect)”public override (Vector2 source, Vector2 target) GetMorphTargets(ChartType targetType, Rect plotArea)No description is available for this member.
Parameters
| Name | Type | Description |
|---|---|---|
targetType |
ChartGuru.ChartType | |
plotArea |
UnityEngine.Rect |
Returns
System.ValueTuple{UnityEngine.Vector2,UnityEngine.Vector2} — No return description is available.
Clone()
Section titled “Clone()”public override IChartMark Clone()No description is available for this member.
Returns
ChartGuru.IChartMark — No return description is available.