.track_configurations
class: InstrumentTrackConfiguration
- class InstrumentTrackConfiguration(**kwargs)[source]
Configuration of an Instrument Track for use in sonification.
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
- get_required_modules(include_extension=False) List[str]
Return the list of URLs from which the Highcharts JavaScript modules needed to render the chart can be retrieved.
- 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 active_when: ActiveWhen | CallbackFunction | None
The condition for when a track should be active or not.
Accepts either a (Javascript)
CallbackFunction
or anActiveWhen
configuration object.Note
If a callback function is used, it should return a boolean for whether or not the track should be active.
The function is called for each audio event, and receives a parameter object with
time
, and potentiallypoint
andvalue
properties depending on the track.point
is available if the audio event is related to a data point.value
is available if the track is used as a context track, and.value_interval
is used.- Return type:
ActiveWhen
orCallbackFunction
orNone
.
- property instrument: str | None
The instrument to use for playing. Defaults to
'piano'
.Accepts:
'flute'
'saxophone'
'trumpet'
'sawsynth'
'wobble'
'basic1'
'basic2'
'sine'
'sineGlide'
'triangle'
'square'
'sawtooth'
'noise'
'filteredNoise'
'wind'
- Return type:
- property mapping: SonificationMapping | None
Mapping options for the audio parameter.
- Return type:
SonificationMapping
orNone
- property midi_name: str | None
The name to use for a track when exporting it to MIDI. If
None
, will use the series name if the track is related to a series. Defaults toNone
.
- property point_grouping: SonificationGrouping | None
Options for configurign the grouping of points.
- Return type:
- property round_to_musical_notes: bool | None
If
True
, will round pitch matching to musical notes in 440Hz standard tuning. IfFalse
, will play the exact mapped/configured note even if it is out of tune as per standard tuning. Defaults toTrue
.
class: SpeechTrackConfiguration
- class SpeechTrackConfiguration(**kwargs)[source]
Configuration of a Speech Track for use in sonification.
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
- get_required_modules(include_extension=False) List[str]
Return the list of URLs from which the Highcharts JavaScript modules needed to render the chart can be retrieved.
- 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 active_when: ActiveWhen | CallbackFunction | None
The condition for when a track should be active or not.
Accepts either a (Javascript)
CallbackFunction
or anActiveWhen
configuration object.Note
If a callback function is used, it should return a boolean for whether or not the track should be active.
The function is called for each audio event, and receives a parameter object with
time
, and potentiallypoint
andvalue
properties depending on the track.point
is available if the audio event is related to a data point.value
is available if the track is used as a context track, and.value_interval
is used.- Return type:
ActiveWhen
orCallbackFunction
orNone
.
- property language: str | None
The language to speak in for speech tracks, as an IETF BCP 47 language tag. Defaults to
'en-US'
.
- property mapping: SonificationMapping | None
Mapping options for the audio parameter.
- Return type:
SonificationMapping
orNone
- property point_grouping: SonificationGrouping | None
Options for configurign the grouping of points.
- Return type:
- property preferred_voice: str | None
The name of the voice synthesis to prefer for speech tracks. If
None
or unavabilable, will fall back to the default voice for the selected language. Defaults toNone
.Warning
Different platforms (operating systems in which your users will view your visualizations) provide different voices for web speech synthesis.
class: ContextTrackConfiguration
- class ContextTrackConfiguration(**kwargs)[source]
Configuration of a Context Track for use in sonification.
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
- get_required_modules(include_extension=False) List[str]
Return the list of URLs from which the Highcharts JavaScript modules needed to render the chart can be retrieved.
- 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 active_when: ActiveWhen | CallbackFunction | None
The condition for when a track should be active or not.
Accepts either a (Javascript)
CallbackFunction
or anActiveWhen
configuration object.Note
If a callback function is used, it should return a boolean for whether or not the track should be active.
The function is called for each audio event, and receives a parameter object with
time
, and potentiallypoint
andvalue
properties depending on the track.point
is available if the audio event is related to a data point.value
is available if the track is used as a context track, and.value_interval
is used.- Return type:
ActiveWhen
orCallbackFunction
orNone
.
- property instrument: str | None
The instrument to use for playing. Defaults to
'piano'
.Accepts:
'flute'
'saxophone'
'trumpet'
'sawsynth'
'wobble'
'basic1'
'basic2'
'sine'
'sineGlide'
'triangle'
'square'
'sawtooth'
'noise'
'filteredNoise'
'wind'
- Return type:
- property language: str | None
The language to speak in for speech tracks, as an IETF BCP 47 language tag. Defaults to
'en-US'
.
- property mapping: SonificationMapping | None
Mapping options for the audio parameter.
- Return type:
SonificationMapping
orNone
- property midi_name: str | None
The name to use for a track when exporting it to MIDI. If
None
, will use the series name if the track is related to a series. Defaults toNone
.
- property point_grouping: SonificationGrouping | None
Options for configurign the grouping of points.
- Return type:
- property preferred_voice: str | None
The name of the voice synthesis to prefer for speech tracks. If
None
or unavabilable, will fall back to the default voice for the selected language. Defaults toNone
.Warning
Different platforms (operating systems in which your users will view your visualizations) provide different voices for web speech synthesis.
- property round_to_musical_notes: bool | None
If
True
, will round pitch matching to musical notes in 440Hz standard tuning. IfFalse
, will play the exact mapped/configured note even if it is out of tune as per standard tuning. Defaults toTrue
.
- property show_play_marker: bool | None
If
True
, displays the play marker (tooltip and/or crosshair) for a track. Defaults toTrue
.
- property time_interval: int | float | Decimal | None
Determines the number of milliseconds between playback of a context track. Defaults to
None
.- Return type:
numeric or
None
- property type: str | None
The type of track. Accepts either
'instrument'
or'speech'
. Defaults to'instrument'
.
- property value_interval: int | float | Decimal | None
Determines the number of units between playback of a context track, where units are determined by
.value_prop
.For example, setting
.value_prop
to'x'
and.value_interval
to5
means the context track should be played for every 5th value of'x'
.Note
The context audio events will be mapped to time according to the prop value relative to the min/max values for that prop.
- Return type:
numeric or
None
class: ActiveWhen
- class ActiveWhen(**kwargs)[source]
Definition of the condition for when a track should be active or not.
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
- get_required_modules(include_extension=False) List[str]
Return the list of URLs from which the Highcharts JavaScript modules needed to render the chart can be retrieved.
- 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 crossing_down: int | float | Decimal | None
Track will be active when the property indicated by
.prop
is at or below this value. Defaults toNone
.Warning
If both
.crossing_down
and.crossing_up
are defined, the track will be active if either condition is met.- Return type:
numeric or
None
- property crossing_up: int | float | Decimal | None
Track will be active when the property indicated by
.prop
is at or above this value. Defaults toNone
.Warning
If both
.crossing_up
and.crossing_down
are defined, the track will be active if either condition is met.- Return type:
numeric or
None
- property max: int | float | Decimal | None
Track will be active when the property indicated by
.prop
is at or below this value. Defaults toNone
.- Return type:
numeric or
None
class: TrackConfigurationBase
- class TrackConfigurationBase(**kwargs)[source]
Base class for use in configuring Sonification tracks.
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
- get_required_modules(include_extension=False) List[str]
Return the list of URLs from which the Highcharts JavaScript modules needed to render the chart can be retrieved.
- 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 active_when: ActiveWhen | CallbackFunction | None
The condition for when a track should be active or not.
Accepts either a (Javascript)
CallbackFunction
or anActiveWhen
configuration object.Note
If a callback function is used, it should return a boolean for whether or not the track should be active.
The function is called for each audio event, and receives a parameter object with
time
, and potentiallypoint
andvalue
properties depending on the track.point
is available if the audio event is related to a data point.value
is available if the track is used as a context track, and.value_interval
is used.- Return type:
ActiveWhen
orCallbackFunction
orNone
.
- property mapping: SonificationMapping | None
Mapping options for the audio parameter.
- Return type:
SonificationMapping
orNone
- property point_grouping: SonificationGrouping | None
Options for configurign the grouping of points.
- Return type: