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/ChartDomain.cs
+32Lines changed: 32 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -624,6 +624,38 @@ public static GenericChart.GenericChart Sankey<IdsType>(
624
624
UseDefaults:UseDefaults.ToOption()
625
625
);
626
626
627
+
/// <summary>
628
+
/// Creates a table.
629
+
///
630
+
/// The data are arranged in a grid of rows and columns. Most styling can be specified for columns, rows or individual cells. Table is using a row-major order per default, ie. the grid is represented as a vector of row vectors.
631
+
/// </summary>
632
+
/// <param name="header">Sets the header of the table</param>
633
+
/// <param name="cells">Sets the cells of the table</param>
634
+
/// <param name="Name">Sets the trace name. The trace name appear as the legend item and on hover.</param>
635
+
/// <param name="ColumnOrder">Specifies the rendered order of the data columns; for example, a value `2` at position `0` means that column index `0` in the data will be rendered as the third column, as columns have an index base of zero.</param>
636
+
/// <param name="ColumnWidth">The width of columns expressed as a ratio. Columns fill the available width in proportion of their specified column widths.</param>
637
+
/// <param name="MultiColumnWidth">The width of columns expressed as a ratio. Columns fill the available width in proportion of their specified column widths.</param>
638
+
/// <param name="UseDefaults">If set to false, ignore the global default settings set in `Defaults`</param>
0 commit comments