AnyChart
API Reference
Still have questions?
Contact support
Top

class anychart.core.gauge.Cap Improve this Doc

Extends: anychart.core.VisualBase

Cap class.

Methods Overview

Coloring
fill()Fill settings.
hatchFill()Hatch fill settings.
stroke()Stroke settings.
Interactivity
enabled()Element state (enabled or disabled).
Size and Position
radius()Cap radius settings.
zIndex()Z-index of the element.

Methods Description

enabled

Getter for the element state (enabled or disabled).

Returns:

boolean - Element state.
Setter for the element enabled state.

Params:

NameTypeDefaultDescription
enabledboolean
true
Enabled state to set.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.
Example.
if (!element.enabled())
   element.enabled(true);

fill

Getter for the cap fill color.

Returns:

anychart.graphics.vector.Fill - Fill color.
Setter for cap fill settings using an array or a string. Learn more about coloring.

Params:

NameTypeDefaultDescription
coloranychart.graphics.vector.Fill | Array.<(anychart.graphics.vector.GradientKey|string)>
'#EAEAEA'
Color as an object, an array or a string.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.
Cap fill color with opacity.
Fill as a string or an object.

Params:

NameTypeDescription
colorstringColor as a string.
opacitynumberColor opacity.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.
Linear gradient cap fill. Learn more about coloring.

Params:

NameTypeDescription
keysArray.<(anychart.graphics.vector.GradientKey|string)>Gradient keys.
anglenumberGradient angle.
modeboolean | anychart.graphics.vector.Rect | ObjectGradient mode.
opacitynumberGradient opacity.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.

Params:

NameTypeDescription
keysArray.<(anychart.graphics.vector.GradientKey|string)>Color-stop gradient keys.
cxnumberX ratio of center radial gradient.
cynumberY ratio of center radial gradient.
modeanychart.graphics.math.RectIf defined then userSpaceOnUse mode, else objectBoundingBox.
opacitynumberOpacity of the gradient.
fxnumberX ratio of focal point.
fynumberY ratio of focal point.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.

Params:

NameTypeDescription
imageSettingsanychart.graphics.vector.FillObject with settings.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.

hatchFill

Getter for cap hatch fill settings.
See listing
var cap = chart.cap();
var hatchFill = cap.hatchFill();
Setter for cap hatch fill settings. Learn more about hatch fill settings.

Params:

NameTypeDefaultDescription
typeanychart.graphics.vector.HatchFill.HatchFillType | string
false
Type of hatch fill.
colorstring
Color.
thicknessnumber
Thickness.
sizenumber
Pattern size.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.
Setter for cap hatch fill settings using pattern fill. Learn more about coloring.

Params:

NameTypeDescription
patternFillanychart.graphics.vector.PatternFillPattern fill to set.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.
Setter for cap hatch fill settings using an instance. Learn more about coloring.

Params:

NameTypeDescription
settingsanychart.graphics.vector.HatchFillHatch fill instance.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.
Setter for cap hatch fill using boolean. Learn more about hatch fill settings.

Params:

NameTypeDefaultDescription
enabledboolean
false
Whether to enable hatch fill or no.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.

radius

Getter for the cap radius.

Returns:

string - Cap radius.
Setter for the cap radius.

Params:

NameTypeDefaultDescription
radiusnumber | string
'15%'
Value to set.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.

stroke

Getter for the cap stroke.

Returns:

anychart.graphics.vector.Stroke - Stroke settings.
Setter for cap stroke settings. Learn more about stroke settings.

Params:

NameTypeDefaultDescription
coloranychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null
'#CECECE'
Stroke settings.
thicknessnumber
Line thickness.
dashpatternstring
Controls the pattern of dashes and gaps used to stroke paths.
lineJoinstring | anychart.graphics.vector.StrokeLineJoin
Line join style.
lineCapstring | anychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.
Setter for the cap stroke using an object.

Params:

NameTypeDefaultDescription
settingsObject
'#CECECE'
Stroke settings from anychart.graphics.vector.Stroke.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.

zIndex

Getter for the Z-index of the element.

Returns:

number - Z-index.
Setter for the Z-index of the element.

Params:

NameTypeDefaultDescription
zIndexnumber
0
Value to set.

Returns:

anychart.core.gauge.Cap - Self instance for method chaining.