pub struct Builder { /* private fields */ }
Expand description
A builder for ReferenceLineDataConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn static_configuration(
self,
input: ReferenceLineStaticDataConfiguration
) -> Self
pub fn static_configuration(
self,
input: ReferenceLineStaticDataConfiguration
) -> Self
The static data configuration of the reference line data configuration.
sourcepub fn set_static_configuration(
self,
input: Option<ReferenceLineStaticDataConfiguration>
) -> Self
pub fn set_static_configuration(
self,
input: Option<ReferenceLineStaticDataConfiguration>
) -> Self
The static data configuration of the reference line data configuration.
sourcepub fn dynamic_configuration(
self,
input: ReferenceLineDynamicDataConfiguration
) -> Self
pub fn dynamic_configuration(
self,
input: ReferenceLineDynamicDataConfiguration
) -> Self
The dynamic configuration of the reference line data configuration.
sourcepub fn set_dynamic_configuration(
self,
input: Option<ReferenceLineDynamicDataConfiguration>
) -> Self
pub fn set_dynamic_configuration(
self,
input: Option<ReferenceLineDynamicDataConfiguration>
) -> Self
The dynamic configuration of the reference line data configuration.
sourcepub fn axis_binding(self, input: AxisBinding) -> Self
pub fn axis_binding(self, input: AxisBinding) -> Self
The axis binding type of the reference line. Choose one of the following options:
-
PrimaryY
-
SecondaryY
sourcepub fn set_axis_binding(self, input: Option<AxisBinding>) -> Self
pub fn set_axis_binding(self, input: Option<AxisBinding>) -> Self
The axis binding type of the reference line. Choose one of the following options:
-
PrimaryY
-
SecondaryY
sourcepub fn build(self) -> ReferenceLineDataConfiguration
pub fn build(self) -> ReferenceLineDataConfiguration
Consumes the builder and constructs a ReferenceLineDataConfiguration
.