pub struct SliderStep { /* private fields */ }
Implementations§
Source§impl SliderStep
impl SliderStep
Sourcepub fn args(self, value: Value) -> Self
pub fn args(self, value: Value) -> Self
Sets the arguments values to be passed to the Plotly method set in
method
for each slider step.
Sourcepub fn args2(self, value: Value) -> Self
pub fn args2(self, value: Value) -> Self
Sets a 2nd set of args
, these arguments values are passed to the
Plotly method set in method
when the slider is moved while in the
active state.
Sourcepub fn execute(self, value: bool) -> Self
pub fn execute(self, value: bool) -> Self
When true, the API method is executed. When false, all other behaviors are the same and command execution is skipped. Default: true
Sourcepub fn method(self, value: SliderMethod) -> Self
pub fn method(self, value: SliderMethod) -> Self
Sets the Plotly method to be called on slider step. If the skip
method
is used, the API updatemenu will function as normal but will perform
no API calls and will not bind automatically to state updates. This
may be used to create a component interface and attach to updatemenu
events manually via JavaScript.
Sourcepub fn name(self, value: impl AsRef<str>) -> Self
pub fn name(self, value: impl AsRef<str>) -> Self
When used in a template, named items are created in the output figure in
addition to any items the figure already has in this array. You can
modify these items in the output figure by making your own item with
templateitemname
matching this name
alongside your modifications
(including visible: false
or enabled: false
to hide it). Has no
effect outside of a template.
Sourcepub fn template_item_name(self, value: impl AsRef<str>) -> Self
pub fn template_item_name(self, value: impl AsRef<str>) -> Self
Used to refer to a named item in this array in the template. Named items
from the template will be created even without a matching item in
the input figure, but you can modify one by making an item with
templateitemname
matching its name
, alongside your modifications
(including visible: false
or enabled: false
to hide it). If there is
no template or no matching item, this item will be hidden unless you
explicitly show it with visible: true
Source§impl SliderStep
impl SliderStep
Trait Implementations§
Source§impl Clone for SliderStep
impl Clone for SliderStep
Source§fn clone(&self) -> SliderStep
fn clone(&self) -> SliderStep
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more