small update (#3612)
Co-authored-by: Tom Gotsman <tomgotsman@toms-mbp.lan>
This commit is contained in:
parent
8304886cac
commit
59752d0cde
@ -283,13 +283,13 @@ class Area(Cartesian):
|
||||
# The interpolation type of area. And customized interpolation function can be set to type. 'basis' | 'basisClosed' | 'basisOpen' | 'bumpX' | 'bumpY' | 'bump' | 'linear' | 'linearClosed' | 'natural' | 'monotoneX' | 'monotoneY' | 'monotone' | 'step' | 'stepBefore' | 'stepAfter' |
|
||||
type_: Var[LiteralAreaType]
|
||||
|
||||
# If false set, dots will not be drawn. If true set, dots will be drawn which have the props calculated internally.
|
||||
# If set false, dots will not be drawn. If set true, dots will be drawn which have the props calculated internally.
|
||||
dot: Var[bool]
|
||||
|
||||
# The dot is shown when user enter an area chart and this chart has tooltip. If false set, no active dot will not be drawn. If true set, active dot will be drawn which have the props calculated internally.
|
||||
# The dot is shown when a user enters an area chart and this chart has a tooltip. If set false, no active dot will be drawn. If set true, an active dot will be drawn which will have the props calculated internally.
|
||||
active_dot: Var[bool]
|
||||
|
||||
# If false set, labels will not be drawn. If true set, labels will be drawn which have the props calculated internally.
|
||||
# If set false, labels will not be drawn. If set true, labels will be drawn which have the props calculated internally.
|
||||
label: Var[bool]
|
||||
|
||||
# The stack id of area, when two areas have the same value axis and same stack_id, then the two areas are stacked in order.
|
||||
@ -383,10 +383,10 @@ class Line(Cartesian):
|
||||
# The width of the line stroke.
|
||||
stoke_width: Var[int]
|
||||
|
||||
# The dot is shown when mouse enter a line chart and this chart has tooltip. If false set, no active dot will not be drawn. If true set, active dot will be drawn which have the props calculated internally.
|
||||
# If set false, dots will not be drawn. If set true, dots will be drawn which have the props calculated internally.
|
||||
dot: Var[bool]
|
||||
|
||||
# The dot is shown when user enter an area chart and this chart has tooltip. If false set, no active dot will not be drawn. If true set, active dot will be drawn which have the props calculated internally.
|
||||
# The dot is shown when a user enters an area chart and this chart has a tooltip. If set false, no active dot will be drawn. If set true, an active dot will be drawn which will have the props calculated internally.
|
||||
active_dot: Var[bool]
|
||||
|
||||
# If false set, labels will not be drawn. If true set, labels will be drawn which have the props calculated internally.
|
||||
|
@ -970,9 +970,9 @@ class Area(Cartesian):
|
||||
stroke_width: The width of the line stroke.
|
||||
fill: The color of the area fill.
|
||||
type_: The interpolation type of area. And customized interpolation function can be set to type. 'basis' | 'basisClosed' | 'basisOpen' | 'bumpX' | 'bumpY' | 'bump' | 'linear' | 'linearClosed' | 'natural' | 'monotoneX' | 'monotoneY' | 'monotone' | 'step' | 'stepBefore' | 'stepAfter' |
|
||||
dot: If false set, dots will not be drawn. If true set, dots will be drawn which have the props calculated internally.
|
||||
active_dot: The dot is shown when user enter an area chart and this chart has tooltip. If false set, no active dot will not be drawn. If true set, active dot will be drawn which have the props calculated internally.
|
||||
label: If false set, labels will not be drawn. If true set, labels will be drawn which have the props calculated internally.
|
||||
dot: If set false, dots will not be drawn. If set true, dots will be drawn which have the props calculated internally.
|
||||
active_dot: The dot is shown when a user enters an area chart and this chart has a tooltip. If set false, no active dot will be drawn. If set true, an active dot will be drawn which will have the props calculated internally.
|
||||
label: If set false, labels will not be drawn. If set true, labels will be drawn which have the props calculated internally.
|
||||
stack_id: The stack id of area, when two areas have the same value axis and same stack_id, then the two areas are stacked in order.
|
||||
unit: The unit of data. This option will be used in tooltip.
|
||||
name: The name of data. This option will be used in tooltip and legend to represent a bar. If no value was set to this option, the value of dataKey will be used alternatively.
|
||||
@ -1313,8 +1313,8 @@ class Line(Cartesian):
|
||||
type_: The interpolation type of line. And customized interpolation function can be set to type. It's the same as type in Area.
|
||||
stroke: The color of the line stroke.
|
||||
stoke_width: The width of the line stroke.
|
||||
dot: The dot is shown when mouse enter a line chart and this chart has tooltip. If false set, no active dot will not be drawn. If true set, active dot will be drawn which have the props calculated internally.
|
||||
active_dot: The dot is shown when user enter an area chart and this chart has tooltip. If false set, no active dot will not be drawn. If true set, active dot will be drawn which have the props calculated internally.
|
||||
dot: If set false, dots will not be drawn. If set true, dots will be drawn which have the props calculated internally.
|
||||
active_dot: The dot is shown when a user enters an area chart and this chart has a tooltip. If set false, no active dot will be drawn. If set true, an active dot will be drawn which will have the props calculated internally.
|
||||
label: If false set, labels will not be drawn. If true set, labels will be drawn which have the props calculated internally.
|
||||
hide: Hides the line when true, useful when toggling visibility state via legend.
|
||||
connect_nulls: Whether to connect a graph line across null points.
|
||||
|
Loading…
Reference in New Issue
Block a user