Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions plotly/src/traces/heat_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use crate::{
common::{
Calendar, ColorBar, ColorScale, Dim, HoverInfo, Label, LegendGroupTitle, PlotType, Visible,
},
private::NumOrStringCollection,
Trace,
};

Expand Down Expand Up @@ -71,6 +72,11 @@ where
color_scale: Option<ColorScale>,
#[serde(rename = "connectgaps")]
connect_gaps: Option<bool>,
/// Assigns extra data each datum. This may be useful when listening to
/// hover, click and selection events. Note that, "scatter" traces also
/// appends customdata items in the markers DOM elements
#[serde(rename = "customdata")]
custom_data: Option<NumOrStringCollection>,
#[serde(rename = "hoverinfo")]
hover_info: Option<HoverInfo>,
#[serde(rename = "hoverlabel")]
Expand Down
Loading