.drag_drop
class: DragDropOptions
- class DragDropOptions(**kwargs)[source]
The draggable-points module allows points to be moved around or modified in the chart.
In addition to the options mentioned under the dragDrop API structure, the module fires three (JavaScript) events:
point.dragStart
point.drag
point.drop
Class Inheritance
- copy(other=None, overwrite=True, **kwargs)
Copy the configuration settings from this instance to the
other
instance.- Parameters:
other (
HighchartsMeta
) – The target instance to which the properties of this instance should be copied. IfNone
, will create a new instance and populate it with properties copied fromself
. Defaults toNone
.overwrite (
bool
) – ifTrue
, properties inother
that are already set will be overwritten by their counterparts inself
. Defaults toTrue
.kwargs – Additional keyword arguments. Some special descendents of
HighchartsMeta
may have special implementations of this method which rely on additional keyword arguments.
- Returns:
A mutated version of
other
with new property values
- classmethod from_dict(as_dict: dict, allow_snake_case: bool = True)
Construct an instance of the class from a
dict
object.
- classmethod from_js_literal(as_str_or_file, allow_snake_case: bool = True, _break_loop_on_failure: bool = False)
Return a Python object representation of a Highcharts JavaScript object literal.
- Parameters:
as_str_or_file (
str
) – The JavaScript object literal, represented either as astr
or as a filename which contains the JS object literal.allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
._break_loop_on_failure (
bool
) – IfTrue
, will break any looping operations in the event of a failure. Otherwise, will attempt to repair the failure. Defaults toFalse
.
- Returns:
A Python object representation of the Highcharts JavaScript object literal.
- Return type:
HighchartsMeta
- classmethod from_json(as_json_or_file, allow_snake_case: bool = True)
Construct an instance of the class from a JSON string.
- Parameters:
as_json_or_file – The JSON string for the object or the filename of a file that contains the JSON string.
allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
.
- Returns:
A Python objcet representation of
as_json
.- Return type:
HighchartsMeta
- to_dict() dict
Generate a
dict
representation of the object compatible with the Highcharts JavaScript library.Note
The
dict
representation has a property structure and naming convention that is intentionally consistent with the Highcharts JavaScript library. This is not Pythonic, but it makes managing the interplay between the two languages much, much simpler.
- to_js_literal(filename=None, encoding='utf-8') str | None
Return the object represented as a
str
containing the JavaScript object literal.
- to_json(filename=None, encoding='utf-8')
Generate a JSON string/byte string representation of the object compatible with the Highcharts JavaScript library.
Note
This method will either return a standard
str
or abytes
object depending on the JSON serialization library you are using. For example, if your environment has orjson, the result will be abytes
representation of the string.- Parameters:
- Returns:
A JSON representation of the object compatible with the Highcharts library.
- Return type:
- static trim_dict(untrimmed: dict, to_json: bool = False) dict
Remove keys from
untrimmed
whose values areNone
and convert values that have.to_dict()
methods.
- static trim_iterable(untrimmed, to_json=False)
Convert any
EnforcedNullType
values inuntrimmed
to'null'
.
- property drag_handle: DragHandle | None
Options for the drag handles available in column series.
- Return type:
DragHandle
orNone
- property drag_max_x: int | float | Decimal | None
The maximum X value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_max_y: int | float | Decimal | None
The maximum Y value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_min_x: int | float | Decimal | None
The minimum X value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_min_y: int | float | Decimal | None
The minimum Y value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_precision_x: int | float | Decimal | None
The X precision value to drag to for this series. Defaults to
None
, which is equivalent to disabling for most axes except for category axes where the default is1
.Set to
0
to disable for all axes.- Return type:
numeric or
None
- property drag_precision_y: int | float | Decimal | None
The Y precision value to drag to for this series. Defaults to
None
, which is equivalent to disabling for most axes except for category axes where the default is1
.Set to
0
to disable for all axes.- Return type:
numeric or
None
- property drag_sensitivity: int | float | Decimal | None
The number of pixels to drag the pointer before it counts as a drag operation. Defaults to
2
.Note
This prevents drag/drop to fire when just clicking or selecting points.
- Return type:
numeric or
None
- property draggable_x: bool | None
If
True
, enables dragging along the X dimension. Defaults toNone
, which is equivalent toFalse
.
- property draggable_y: bool | None
If
True
, enables dragging along the Y dimension. Defaults toNone
, which is equivalent toFalse
.Warning
This is not supported for TreeGrid axes (the default axis type in Gantt charts).
- property group_by: str | None
Group the points by a property. Points with the same property value will be grouped together when moving. Defaults to
None
.
class: HighLowDragDropOptions
- class HighLowDragDropOptions(**kwargs)[source]
The draggable-points module allows points to be moved around or modified in the chart.
Class Inheritance
- copy(other=None, overwrite=True, **kwargs)
Copy the configuration settings from this instance to the
other
instance.- Parameters:
other (
HighchartsMeta
) – The target instance to which the properties of this instance should be copied. IfNone
, will create a new instance and populate it with properties copied fromself
. Defaults toNone
.overwrite (
bool
) – ifTrue
, properties inother
that are already set will be overwritten by their counterparts inself
. Defaults toTrue
.kwargs – Additional keyword arguments. Some special descendents of
HighchartsMeta
may have special implementations of this method which rely on additional keyword arguments.
- Returns:
A mutated version of
other
with new property values
- classmethod from_dict(as_dict: dict, allow_snake_case: bool = True)
Construct an instance of the class from a
dict
object.
- classmethod from_js_literal(as_str_or_file, allow_snake_case: bool = True, _break_loop_on_failure: bool = False)
Return a Python object representation of a Highcharts JavaScript object literal.
- Parameters:
as_str_or_file (
str
) – The JavaScript object literal, represented either as astr
or as a filename which contains the JS object literal.allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
._break_loop_on_failure (
bool
) – IfTrue
, will break any looping operations in the event of a failure. Otherwise, will attempt to repair the failure. Defaults toFalse
.
- Returns:
A Python object representation of the Highcharts JavaScript object literal.
- Return type:
HighchartsMeta
- classmethod from_json(as_json_or_file, allow_snake_case: bool = True)
Construct an instance of the class from a JSON string.
- Parameters:
as_json_or_file – The JSON string for the object or the filename of a file that contains the JSON string.
allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
.
- Returns:
A Python objcet representation of
as_json
.- Return type:
HighchartsMeta
- to_dict() dict
Generate a
dict
representation of the object compatible with the Highcharts JavaScript library.Note
The
dict
representation has a property structure and naming convention that is intentionally consistent with the Highcharts JavaScript library. This is not Pythonic, but it makes managing the interplay between the two languages much, much simpler.
- to_js_literal(filename=None, encoding='utf-8') str | None
Return the object represented as a
str
containing the JavaScript object literal.
- to_json(filename=None, encoding='utf-8')
Generate a JSON string/byte string representation of the object compatible with the Highcharts JavaScript library.
Note
This method will either return a standard
str
or abytes
object depending on the JSON serialization library you are using. For example, if your environment has orjson, the result will be abytes
representation of the string.- Parameters:
- Returns:
A JSON representation of the object compatible with the Highcharts library.
- Return type:
- static trim_dict(untrimmed: dict, to_json: bool = False) dict
Remove keys from
untrimmed
whose values areNone
and convert values that have.to_dict()
methods.
- static trim_iterable(untrimmed, to_json=False)
Convert any
EnforcedNullType
values inuntrimmed
to'null'
.
- property drag_handle: DragHandle | None
Options for the drag handles available in column series.
- Return type:
DragHandle
orNone
- property drag_max_x: int | float | Decimal | None
The maximum X value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_max_y: int | float | Decimal | None
The maximum Y value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_min_x: int | float | Decimal | None
The minimum X value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_min_y: int | float | Decimal | None
The minimum Y value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_precision_x: int | float | Decimal | None
The X precision value to drag to for this series. Defaults to
None
, which is equivalent to disabling for most axes except for category axes where the default is1
.Set to
0
to disable for all axes.- Return type:
numeric or
None
- property drag_precision_y: int | float | Decimal | None
The Y precision value to drag to for this series. Defaults to
None
, which is equivalent to disabling for most axes except for category axes where the default is1
.Set to
0
to disable for all axes.- Return type:
numeric or
None
- property drag_sensitivity: int | float | Decimal | None
The number of pixels to drag the pointer before it counts as a drag operation. Defaults to
2
.Note
This prevents drag/drop to fire when just clicking or selecting points.
- Return type:
numeric or
None
- property draggable_high: bool | None
If
True
, enables high value to be dragged individually. Defaults toNone
, which is equivalent toTrue
.
- property draggable_low: bool | None
If
True
, enables the low value to be dragged individually. Defaults toNone
, which is equivalent toTrue
.
- property draggable_x: bool | None
If
True
, enables dragging along the X dimension. Defaults toNone
, which is equivalent toFalse
.
- property draggable_y: bool | None
If
True
, enables dragging along the Y dimension. Defaults toNone
, which is equivalent toFalse
.Warning
This is not supported for TreeGrid axes (the default axis type in Gantt charts).
- property group_by: str | None
Group the points by a property. Points with the same property value will be grouped together when moving. Defaults to
None
.
class: BoxPlotDragDropOptions
- class BoxPlotDragDropOptions(**kwargs)[source]
The draggable-points module allows points to be moved around or modified in the chart.
Class Inheritance
- copy(other=None, overwrite=True, **kwargs)
Copy the configuration settings from this instance to the
other
instance.- Parameters:
other (
HighchartsMeta
) – The target instance to which the properties of this instance should be copied. IfNone
, will create a new instance and populate it with properties copied fromself
. Defaults toNone
.overwrite (
bool
) – ifTrue
, properties inother
that are already set will be overwritten by their counterparts inself
. Defaults toTrue
.kwargs – Additional keyword arguments. Some special descendents of
HighchartsMeta
may have special implementations of this method which rely on additional keyword arguments.
- Returns:
A mutated version of
other
with new property values
- classmethod from_dict(as_dict: dict, allow_snake_case: bool = True)
Construct an instance of the class from a
dict
object.
- classmethod from_js_literal(as_str_or_file, allow_snake_case: bool = True, _break_loop_on_failure: bool = False)
Return a Python object representation of a Highcharts JavaScript object literal.
- Parameters:
as_str_or_file (
str
) – The JavaScript object literal, represented either as astr
or as a filename which contains the JS object literal.allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
._break_loop_on_failure (
bool
) – IfTrue
, will break any looping operations in the event of a failure. Otherwise, will attempt to repair the failure. Defaults toFalse
.
- Returns:
A Python object representation of the Highcharts JavaScript object literal.
- Return type:
HighchartsMeta
- classmethod from_json(as_json_or_file, allow_snake_case: bool = True)
Construct an instance of the class from a JSON string.
- Parameters:
as_json_or_file – The JSON string for the object or the filename of a file that contains the JSON string.
allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
.
- Returns:
A Python objcet representation of
as_json
.- Return type:
HighchartsMeta
- to_dict() dict
Generate a
dict
representation of the object compatible with the Highcharts JavaScript library.Note
The
dict
representation has a property structure and naming convention that is intentionally consistent with the Highcharts JavaScript library. This is not Pythonic, but it makes managing the interplay between the two languages much, much simpler.
- to_js_literal(filename=None, encoding='utf-8') str | None
Return the object represented as a
str
containing the JavaScript object literal.
- to_json(filename=None, encoding='utf-8')
Generate a JSON string/byte string representation of the object compatible with the Highcharts JavaScript library.
Note
This method will either return a standard
str
or abytes
object depending on the JSON serialization library you are using. For example, if your environment has orjson, the result will be abytes
representation of the string.- Parameters:
- Returns:
A JSON representation of the object compatible with the Highcharts library.
- Return type:
- static trim_dict(untrimmed: dict, to_json: bool = False) dict
Remove keys from
untrimmed
whose values areNone
and convert values that have.to_dict()
methods.
- static trim_iterable(untrimmed, to_json=False)
Convert any
EnforcedNullType
values inuntrimmed
to'null'
.
- property drag_handle: DragHandle | None
Options for the drag handles available in column series.
- Return type:
DragHandle
orNone
- property drag_max_x: int | float | Decimal | None
The maximum X value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_max_y: int | float | Decimal | None
The maximum Y value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_min_x: int | float | Decimal | None
The minimum X value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_min_y: int | float | Decimal | None
The minimum Y value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_precision_x: int | float | Decimal | None
The X precision value to drag to for this series. Defaults to
None
, which is equivalent to disabling for most axes except for category axes where the default is1
.Set to
0
to disable for all axes.- Return type:
numeric or
None
- property drag_precision_y: int | float | Decimal | None
The Y precision value to drag to for this series. Defaults to
None
, which is equivalent to disabling for most axes except for category axes where the default is1
.Set to
0
to disable for all axes.- Return type:
numeric or
None
- property drag_sensitivity: int | float | Decimal | None
The number of pixels to drag the pointer before it counts as a drag operation. Defaults to
2
.Note
This prevents drag/drop to fire when just clicking or selecting points.
- Return type:
numeric or
None
- property draggable_high: bool | None
If
True
, enables high value to be dragged individually. Defaults toNone
, which is equivalent toTrue
.
- property draggable_low: bool | None
If
True
, enables the low value to be dragged individually. Defaults toNone
, which is equivalent toTrue
.
- property draggable_q1: bool | None
If
True
, enables the Q1 value to be dragged individually. Defaults toNone
, which is equivalent toTrue
.
- property draggable_q3: bool | None
If
True
, enables the Q3 value to be dragged individually. Defaults toNone
, which is equivalent toTrue
.
- property draggable_x: bool | None
If
True
, enables dragging along the X dimension. Defaults toNone
, which is equivalent toFalse
.
- property draggable_y: bool | None
If
True
, enables dragging along the Y dimension. Defaults toNone
, which is equivalent toFalse
.Warning
This is not supported for TreeGrid axes (the default axis type in Gantt charts).
- property group_by: str | None
Group the points by a property. Points with the same property value will be grouped together when moving. Defaults to
None
.
class: BulletDragDropOptions
- class BulletDragDropOptions(**kwargs)[source]
The draggable-points module allows points to be moved around or modified in the chart.
Class Inheritance
- copy(other=None, overwrite=True, **kwargs)
Copy the configuration settings from this instance to the
other
instance.- Parameters:
other (
HighchartsMeta
) – The target instance to which the properties of this instance should be copied. IfNone
, will create a new instance and populate it with properties copied fromself
. Defaults toNone
.overwrite (
bool
) – ifTrue
, properties inother
that are already set will be overwritten by their counterparts inself
. Defaults toTrue
.kwargs – Additional keyword arguments. Some special descendents of
HighchartsMeta
may have special implementations of this method which rely on additional keyword arguments.
- Returns:
A mutated version of
other
with new property values
- classmethod from_dict(as_dict: dict, allow_snake_case: bool = True)
Construct an instance of the class from a
dict
object.
- classmethod from_js_literal(as_str_or_file, allow_snake_case: bool = True, _break_loop_on_failure: bool = False)
Return a Python object representation of a Highcharts JavaScript object literal.
- Parameters:
as_str_or_file (
str
) – The JavaScript object literal, represented either as astr
or as a filename which contains the JS object literal.allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
._break_loop_on_failure (
bool
) – IfTrue
, will break any looping operations in the event of a failure. Otherwise, will attempt to repair the failure. Defaults toFalse
.
- Returns:
A Python object representation of the Highcharts JavaScript object literal.
- Return type:
HighchartsMeta
- classmethod from_json(as_json_or_file, allow_snake_case: bool = True)
Construct an instance of the class from a JSON string.
- Parameters:
as_json_or_file – The JSON string for the object or the filename of a file that contains the JSON string.
allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
.
- Returns:
A Python objcet representation of
as_json
.- Return type:
HighchartsMeta
- to_dict() dict
Generate a
dict
representation of the object compatible with the Highcharts JavaScript library.Note
The
dict
representation has a property structure and naming convention that is intentionally consistent with the Highcharts JavaScript library. This is not Pythonic, but it makes managing the interplay between the two languages much, much simpler.
- to_js_literal(filename=None, encoding='utf-8') str | None
Return the object represented as a
str
containing the JavaScript object literal.
- to_json(filename=None, encoding='utf-8')
Generate a JSON string/byte string representation of the object compatible with the Highcharts JavaScript library.
Note
This method will either return a standard
str
or abytes
object depending on the JSON serialization library you are using. For example, if your environment has orjson, the result will be abytes
representation of the string.- Parameters:
- Returns:
A JSON representation of the object compatible with the Highcharts library.
- Return type:
- static trim_dict(untrimmed: dict, to_json: bool = False) dict
Remove keys from
untrimmed
whose values areNone
and convert values that have.to_dict()
methods.
- static trim_iterable(untrimmed, to_json=False)
Convert any
EnforcedNullType
values inuntrimmed
to'null'
.
- property drag_handle: DragHandle | None
Options for the drag handles available in column series.
- Return type:
DragHandle
orNone
- property drag_max_x: int | float | Decimal | None
The maximum X value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_max_y: int | float | Decimal | None
The maximum Y value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_min_x: int | float | Decimal | None
The minimum X value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_min_y: int | float | Decimal | None
The minimum Y value the points can be moved to. Defaults to
None
.- Return type:
numeric or
None
- property drag_precision_x: int | float | Decimal | None
The X precision value to drag to for this series. Defaults to
None
, which is equivalent to disabling for most axes except for category axes where the default is1
.Set to
0
to disable for all axes.- Return type:
numeric or
None
- property drag_precision_y: int | float | Decimal | None
The Y precision value to drag to for this series. Defaults to
None
, which is equivalent to disabling for most axes except for category axes where the default is1
.Set to
0
to disable for all axes.- Return type:
numeric or
None
- property drag_sensitivity: int | float | Decimal | None
The number of pixels to drag the pointer before it counts as a drag operation. Defaults to
2
.Note
This prevents drag/drop to fire when just clicking or selecting points.
- Return type:
numeric or
None
- property draggable_target: bool | None
If
True
, enables the target to be dragged individually. Defaults toNone
, which is equivalent toTrue
.
- property draggable_x: bool | None
If
True
, enables dragging along the X dimension. Defaults toNone
, which is equivalent toFalse
.
- property draggable_y: bool | None
If
True
, enables dragging along the Y dimension. Defaults toNone
, which is equivalent toFalse
.Warning
This is not supported for TreeGrid axes (the default axis type in Gantt charts).
- property group_by: str | None
Group the points by a property. Points with the same property value will be grouped together when moving. Defaults to
None
.
class: GuideBox
- class GuideBox(**kwargs)[source]
Style options for the guide box. The guide box has one state by default, the
default
state.Class Inheritance
- copy(other=None, overwrite=True, **kwargs)
Copy the configuration settings from this instance to the
other
instance.- Parameters:
other (
HighchartsMeta
) – The target instance to which the properties of this instance should be copied. IfNone
, will create a new instance and populate it with properties copied fromself
. Defaults toNone
.overwrite (
bool
) – ifTrue
, properties inother
that are already set will be overwritten by their counterparts inself
. Defaults toTrue
.kwargs – Additional keyword arguments. Some special descendents of
HighchartsMeta
may have special implementations of this method which rely on additional keyword arguments.
- Returns:
A mutated version of
other
with new property values
- classmethod from_dict(as_dict: dict, allow_snake_case: bool = True)
Construct an instance of the class from a
dict
object.
- classmethod from_js_literal(as_str_or_file, allow_snake_case: bool = True, _break_loop_on_failure: bool = False)
Return a Python object representation of a Highcharts JavaScript object literal.
- Parameters:
as_str_or_file (
str
) – The JavaScript object literal, represented either as astr
or as a filename which contains the JS object literal.allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
._break_loop_on_failure (
bool
) – IfTrue
, will break any looping operations in the event of a failure. Otherwise, will attempt to repair the failure. Defaults toFalse
.
- Returns:
A Python object representation of the Highcharts JavaScript object literal.
- Return type:
HighchartsMeta
- classmethod from_json(as_json_or_file, allow_snake_case: bool = True)
Construct an instance of the class from a JSON string.
- Parameters:
as_json_or_file – The JSON string for the object or the filename of a file that contains the JSON string.
allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
.
- Returns:
A Python objcet representation of
as_json
.- Return type:
HighchartsMeta
- to_dict() dict
Generate a
dict
representation of the object compatible with the Highcharts JavaScript library.Note
The
dict
representation has a property structure and naming convention that is intentionally consistent with the Highcharts JavaScript library. This is not Pythonic, but it makes managing the interplay between the two languages much, much simpler.
- to_js_literal(filename=None, encoding='utf-8') str | None
Return the object represented as a
str
containing the JavaScript object literal.
- to_json(filename=None, encoding='utf-8')
Generate a JSON string/byte string representation of the object compatible with the Highcharts JavaScript library.
Note
This method will either return a standard
str
or abytes
object depending on the JSON serialization library you are using. For example, if your environment has orjson, the result will be abytes
representation of the string.- Parameters:
- Returns:
A JSON representation of the object compatible with the Highcharts library.
- Return type:
- static trim_dict(untrimmed: dict, to_json: bool = False) dict
Remove keys from
untrimmed
whose values areNone
and convert values that have.to_dict()
methods.
- static trim_iterable(untrimmed, to_json=False)
Convert any
EnforcedNullType
values inuntrimmed
to'null'
.
- property default: GuideBoxOptions | None
Style options for the guide box default state.
- Return type:
class: GuideBoxOptions
- class GuideBoxOptions(**kwargs)[source]
Style options for the guide box default state.
Class Inheritance
- copy(other=None, overwrite=True, **kwargs)
Copy the configuration settings from this instance to the
other
instance.- Parameters:
other (
HighchartsMeta
) – The target instance to which the properties of this instance should be copied. IfNone
, will create a new instance and populate it with properties copied fromself
. Defaults toNone
.overwrite (
bool
) – ifTrue
, properties inother
that are already set will be overwritten by their counterparts inself
. Defaults toTrue
.kwargs – Additional keyword arguments. Some special descendents of
HighchartsMeta
may have special implementations of this method which rely on additional keyword arguments.
- Returns:
A mutated version of
other
with new property values
- classmethod from_dict(as_dict: dict, allow_snake_case: bool = True)
Construct an instance of the class from a
dict
object.
- classmethod from_js_literal(as_str_or_file, allow_snake_case: bool = True, _break_loop_on_failure: bool = False)
Return a Python object representation of a Highcharts JavaScript object literal.
- Parameters:
as_str_or_file (
str
) – The JavaScript object literal, represented either as astr
or as a filename which contains the JS object literal.allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
._break_loop_on_failure (
bool
) – IfTrue
, will break any looping operations in the event of a failure. Otherwise, will attempt to repair the failure. Defaults toFalse
.
- Returns:
A Python object representation of the Highcharts JavaScript object literal.
- Return type:
HighchartsMeta
- classmethod from_json(as_json_or_file, allow_snake_case: bool = True)
Construct an instance of the class from a JSON string.
- Parameters:
as_json_or_file – The JSON string for the object or the filename of a file that contains the JSON string.
allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
.
- Returns:
A Python objcet representation of
as_json
.- Return type:
HighchartsMeta
- to_dict() dict
Generate a
dict
representation of the object compatible with the Highcharts JavaScript library.Note
The
dict
representation has a property structure and naming convention that is intentionally consistent with the Highcharts JavaScript library. This is not Pythonic, but it makes managing the interplay between the two languages much, much simpler.
- to_js_literal(filename=None, encoding='utf-8') str | None
Return the object represented as a
str
containing the JavaScript object literal.
- to_json(filename=None, encoding='utf-8')
Generate a JSON string/byte string representation of the object compatible with the Highcharts JavaScript library.
Note
This method will either return a standard
str
or abytes
object depending on the JSON serialization library you are using. For example, if your environment has orjson, the result will be abytes
representation of the string.- Parameters:
- Returns:
A JSON representation of the object compatible with the Highcharts library.
- Return type:
- static trim_dict(untrimmed: dict, to_json: bool = False) dict
Remove keys from
untrimmed
whose values areNone
and convert values that have.to_dict()
methods.
- static trim_iterable(untrimmed, to_json=False)
Convert any
EnforcedNullType
values inuntrimmed
to'null'
.
- property class_name: str | None
CSS class name of the guide box in this state. Defaults to
'highcharts-drag-box-default'
.
- property color: str | Gradient | Pattern | None
Guide box fill color. Defaults to
'rgba(0, 0, 0, 0.1)'
.
- property cursor: str | None
The style of cursor to use when the user’s mouse hovers over the data series. Defaults to
'move'
.Acceptable values are:
'alias'
'all-scroll'
'auto'
'cell'
'col-resize'
'context-menu'
'copy'
'crosshair'
'default'
'e-resize'
'ew-resize'
'grab'
'grabbing'
'help'
'move'
'n-resize'
'ne-resize'
'nesw-resize'
'no-drop'
'none'
'not-allowed'
'ns-resize'
'nw-resize'
'nwse-resize'
'pointer'
'progress'
'row-resize'
's-resize'
'se-resize'
'sw-resize'
'text'
'vertical-text'
'w-resize'
'wait'
'zoom-in'
'zoom-out'
- property line_color: str | Gradient | Pattern | None
Color of the border around the guide box. Defaults to
'#888'
.
class: DragHandle
- class DragHandle(**kwargs)[source]
Options for the drag handles available in column series.
Class Inheritance
- copy(other=None, overwrite=True, **kwargs)
Copy the configuration settings from this instance to the
other
instance.- Parameters:
other (
HighchartsMeta
) – The target instance to which the properties of this instance should be copied. IfNone
, will create a new instance and populate it with properties copied fromself
. Defaults toNone
.overwrite (
bool
) – ifTrue
, properties inother
that are already set will be overwritten by their counterparts inself
. Defaults toTrue
.kwargs – Additional keyword arguments. Some special descendents of
HighchartsMeta
may have special implementations of this method which rely on additional keyword arguments.
- Returns:
A mutated version of
other
with new property values
- classmethod from_dict(as_dict: dict, allow_snake_case: bool = True)
Construct an instance of the class from a
dict
object.
- classmethod from_js_literal(as_str_or_file, allow_snake_case: bool = True, _break_loop_on_failure: bool = False)
Return a Python object representation of a Highcharts JavaScript object literal.
- Parameters:
as_str_or_file (
str
) – The JavaScript object literal, represented either as astr
or as a filename which contains the JS object literal.allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
._break_loop_on_failure (
bool
) – IfTrue
, will break any looping operations in the event of a failure. Otherwise, will attempt to repair the failure. Defaults toFalse
.
- Returns:
A Python object representation of the Highcharts JavaScript object literal.
- Return type:
HighchartsMeta
- classmethod from_json(as_json_or_file, allow_snake_case: bool = True)
Construct an instance of the class from a JSON string.
- Parameters:
as_json_or_file – The JSON string for the object or the filename of a file that contains the JSON string.
allow_snake_case (
bool
) – IfTrue
, interpretssnake_case
keys as equivalent tocamelCase
keys. Defaults toTrue
.
- Returns:
A Python objcet representation of
as_json
.- Return type:
HighchartsMeta
- to_dict() dict
Generate a
dict
representation of the object compatible with the Highcharts JavaScript library.Note
The
dict
representation has a property structure and naming convention that is intentionally consistent with the Highcharts JavaScript library. This is not Pythonic, but it makes managing the interplay between the two languages much, much simpler.
- to_js_literal(filename=None, encoding='utf-8') str | None
Return the object represented as a
str
containing the JavaScript object literal.
- to_json(filename=None, encoding='utf-8')
Generate a JSON string/byte string representation of the object compatible with the Highcharts JavaScript library.
Note
This method will either return a standard
str
or abytes
object depending on the JSON serialization library you are using. For example, if your environment has orjson, the result will be abytes
representation of the string.- Parameters:
- Returns:
A JSON representation of the object compatible with the Highcharts library.
- Return type:
- static trim_dict(untrimmed: dict, to_json: bool = False) dict
Remove keys from
untrimmed
whose values areNone
and convert values that have.to_dict()
methods.
- static trim_iterable(untrimmed, to_json=False)
Convert any
EnforcedNullType
values inuntrimmed
to'null'
.
- property class_name: str | None
CSS class name of the guide box in this state. Defaults to
'highcharts-drag-handle'
.
- property color: str | Gradient | Pattern | None
The fill color of the drag handles. Defaults to
'#fff'
.
- property cursor: str | None
The mouse cursor to use for the drag handles. By default (when
None
), this intelligently switches between'ew-resize'
and'ns-resize'
depending on the direction the point is being dragged.Acceptable values are:
'alias'
'all-scroll'
'auto'
'cell'
'col-resize'
'context-menu'
'copy'
'crosshair'
'default'
'e-resize'
'ew-resize'
'grab'
'grabbing'
'help'
'move'
'n-resize'
'ne-resize'
'nesw-resize'
'no-drop'
'none'
'not-allowed'
'ns-resize'
'nw-resize'
'nwse-resize'
'pointer'
'progress'
'row-resize'
's-resize'
'se-resize'
'sw-resize'
'text'
'vertical-text'
'w-resize'
'wait'
'zoom-in'
'zoom-out'
- property line_color: str | Gradient | Pattern | None
The line color of the drag handles. Defaults to
'rgba(0, 0, 0, 0.6)'
.
- property line_width: int | float | Decimal | None
The line width for the drag handles. Defaults to
1
.- Return type:
numeric or
None
- property path_formatter: CallbackFunction | None
JavaScript function to define the SVG path to use for the drag handles. Takes the
point
as a (JavaScript) argument. Should return an SVG path in array format. The SVG path is automatically positioned on the point.- Return type:
CallbackFunction
orNone