pub struct Heatmap { /* private fields */ }
Implementations§
Source§impl Heatmap
impl Heatmap
pub fn new() -> Self
pub fn id<S: Into<String>>(self, id: S) -> Self
pub fn name<S: Into<String>>(self, name: S) -> Self
pub fn coordinate_system(self, coordinate_system: CoordinateSystem) -> Self
pub fn x_axis_index<F: Into<i64>>(self, x_axis_index: F) -> Self
pub fn y_axis_index<F: Into<i64>>(self, y_axis_index: F) -> Self
pub fn geo_index<F: Into<i64>>(self, geo_index: F) -> Self
pub fn calendar_index<F: Into<i64>>(self, calendar_index: F) -> Self
pub fn point_size<F: Into<i64>>(self, point_size: F) -> Self
pub fn blur_size<F: Into<i64>>(self, blur_size: F) -> Self
pub fn min_opacity<F: Into<i64>>(self, min_opacity: F) -> Self
pub fn max_opacity<F: Into<i64>>(self, max_opacity: F) -> Self
pub fn progressive<F: Into<i64>>(self, progressive: F) -> Self
pub fn progressive_threshold<F: Into<i64>>( self, progressive_threshold: F, ) -> Self
pub fn label(self, label: Label) -> Self
pub fn item_style(self, item_style: ItemStyle) -> Self
pub fn emphasis(self, emphasis: Emphasis) -> Self
pub fn data<S: Into<DataFrame>>(self, data: Vec<S>) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Heatmap
impl RefUnwindSafe for Heatmap
impl Send for Heatmap
impl Sync for Heatmap
impl Unpin for Heatmap
impl UnwindSafe for Heatmap
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more