You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Plotly.NET.CSharp/ChartAPI/Chart2D.cs
+152
Original file line number
Diff line number
Diff line change
@@ -284,5 +284,157 @@ public static GenericChart.GenericChart Line<XType, YType, TextType>(
284
284
UseDefaults:Helpers.ToOptionV(UseDefaults)
285
285
);
286
286
287
+
/// <summary>
288
+
/// Creates a bar chart, with bars plotted horizontally
289
+
///
290
+
/// A bar chart is a chart that presents categorical data with rectangular bars with heights or lengths proportional to the values that they represent.
291
+
/// </summary>
292
+
/// <param name="values">Sets the values that are plotted as the size of each bar.</param>
293
+
/// <param name="Keys">Sets the keys associated with each bar.</param>
294
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
295
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
296
+
/// <param name="Opacity">Sets the Opacity of the trace.</param>
297
+
/// <param name="MultiOpacity">Sets the Opacity of each individual bar.</param>
298
+
/// <param name="Text">Sets a text associated with each datum</param>
299
+
/// <param name="MultiText">Sets individual text for each datum</param>
300
+
/// <param name="MarkerColor">Sets the color of the bars</param>
301
+
/// <param name="MarkerColorScale">Sets the colorscale for the bars. To have an effect, `MarkerColor` must map to color scale values.</param>
302
+
/// <param name="MarkerOutline">Sets the color of the bar outlines</param>
303
+
/// <param name="MarkerPatternShape">Sets a pattern shape for all bars</param>
304
+
/// <param name="MultiMarkerPatternShape">Sets an individual pattern shape for each bar</param>
305
+
/// <param name="MarkerPattern">Sets the marker pattern (use this for more finegrained control than the other pattern-associated arguments).</param>
306
+
/// <param name="Marker">Sets the marker for the bars (use this for more finegrained control than the other marker-associated arguments).</param>
307
+
/// <param name="Base">Sets where the bar base is drawn (in position axis units).</param>
308
+
/// <param name="Width">Sets the bar width (in position axis units) of all bars.</param>
309
+
/// <param name="MultiWidth">Sets the individual bar width (in position axis units) for each bar.</param>
310
+
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
311
+
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
312
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
/// Creates a column chart, with bars plotted vertically
365
+
///
366
+
/// A column chart is a chart that presents categorical data with rectangular bars with heights or lengths proportional to the values that they represent.
367
+
/// </summary>
368
+
/// <param name="values">Sets the values that are plotted as the size of each bar.</param>
369
+
/// <param name="Keys">Sets the keys associated with each bar.</param>
370
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover</param>
371
+
/// <param name="ShowLegend">Determines whether or not an item corresponding to this trace is shown in the legend.</param>
372
+
/// <param name="Opacity">Sets the Opacity of the trace.</param>
373
+
/// <param name="MultiOpacity">Sets the Opacity of each individual bar.</param>
374
+
/// <param name="Text">Sets a text associated with each datum</param>
375
+
/// <param name="MultiText">Sets individual text for each datum</param>
376
+
/// <param name="MarkerColor">Sets the color of the bars</param>
377
+
/// <param name="MarkerColorScale">Sets the colorscale for the bars. To have an effect, `MarkerColor` must map to color scale values.</param>
378
+
/// <param name="MarkerOutline">Sets the color of the bar outlines</param>
379
+
/// <param name="MarkerPatternShape">Sets a pattern shape for all bars</param>
380
+
/// <param name="MultiMarkerPatternShape">Sets an individual pattern shape for each bar</param>
381
+
/// <param name="MarkerPattern">Sets the marker pattern (use this for more finegrained control than the other pattern-associated arguments).</param>
382
+
/// <param name="Marker">Sets the marker for the bars (use this for more finegrained control than the other marker-associated arguments).</param>
383
+
/// <param name="Base">Sets where the bar base is drawn (in position axis units).</param>
384
+
/// <param name="Width">Sets the bar width (in position axis units) of all bars.</param>
385
+
/// <param name="MultiWidth">Sets the individual bar width (in position axis units) for each bar.</param>
386
+
/// <param name="TextPosition">Sets the position of text associated with each datum</param>
387
+
/// <param name="MultiTextPosition">Sets the position of text associated with individual datum</param>
388
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments