#[non_exhaustive]pub struct MissingDataConfiguration { /* private fields */ }
Expand description
The configuration options that determine how missing data is treated during the rendering of a line chart.
Implementations§
source§impl MissingDataConfiguration
impl MissingDataConfiguration
sourcepub fn treatment_option(&self) -> Option<&MissingDataTreatmentOption>
pub fn treatment_option(&self) -> Option<&MissingDataTreatmentOption>
The treatment option that determines how missing data should be rendered. Choose from the following options:
-
INTERPOLATE
: Interpolate missing values between the prior and the next known value. -
SHOW_AS_ZERO
: Show missing values as the value0
. -
SHOW_AS_BLANK
: Display a blank space when rendering missing data.
source§impl MissingDataConfiguration
impl MissingDataConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MissingDataConfiguration
.
Trait Implementations§
source§impl Clone for MissingDataConfiguration
impl Clone for MissingDataConfiguration
source§fn clone(&self) -> MissingDataConfiguration
fn clone(&self) -> MissingDataConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for MissingDataConfiguration
impl Debug for MissingDataConfiguration
source§impl PartialEq<MissingDataConfiguration> for MissingDataConfiguration
impl PartialEq<MissingDataConfiguration> for MissingDataConfiguration
source§fn eq(&self, other: &MissingDataConfiguration) -> bool
fn eq(&self, other: &MissingDataConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.