Skip to content

Commit 180de45

Browse files
committed
Fix histogram2d/histogram2dcontour traces
1 parent 20e016b commit 180de45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Plotly.NET/Traces/Trace2D.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ type Trace2D(traceTypeName) =
7777

7878
///initializes a trace of type "histogram2D" applying the given trace styling function
7979
static member initHistogram2D (applyStyle: Trace2D -> Trace2D) =
80-
Trace2D("histogram2D") |> applyStyle
80+
Trace2D("histogram2d") |> applyStyle
8181

8282
///initializes a trace of type "histogram2Dcontour" applying the given trace styling function
8383
static member initHistogram2DContour (applyStyle: Trace2D -> Trace2D) =
84-
Trace2D("histogram2Dcontour") |> applyStyle
84+
Trace2D("histogram2dcontour") |> applyStyle
8585

8686
///initializes a trace of type "image" applying the given trace styling function
8787
static member initImage (applyStyle: Trace2D -> Trace2D) =

0 commit comments

Comments
 (0)