We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20e016b commit 180de45Copy full SHA for 180de45
1 file changed
src/Plotly.NET/Traces/Trace2D.fs
@@ -77,11 +77,11 @@ type Trace2D(traceTypeName) =
77
78
///initializes a trace of type "histogram2D" applying the given trace styling function
79
static member initHistogram2D (applyStyle: Trace2D -> Trace2D) =
80
- Trace2D("histogram2D") |> applyStyle
+ Trace2D("histogram2d") |> applyStyle
81
82
///initializes a trace of type "histogram2Dcontour" applying the given trace styling function
83
static member initHistogram2DContour (applyStyle: Trace2D -> Trace2D) =
84
- Trace2D("histogram2Dcontour") |> applyStyle
+ Trace2D("histogram2dcontour") |> applyStyle
85
86
///initializes a trace of type "image" applying the given trace styling function
87
static member initImage (applyStyle: Trace2D -> Trace2D) =
0 commit comments