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
/// Saves the given Chart as html file at the given path (.html file extension is added if not present).
22
+
/// Saves the given Chart as html file at the given path (.html file extension is added if not present).
22
23
/// Optionally opens the generated file in the browser.
23
24
/// </summary>
24
25
/// <param name="path">The path to save the chart html at.</param>
@@ -55,7 +56,7 @@ type Chart =
55
56
/// Saves the given chart as a temporary html file containing a static image of the chart and opens it in the browser.
56
57
///
57
58
/// IMPORTANT: this is not the same as static image generation. The file still needs to be opened in the browser to generate the image, as it is done via a js script in the html.
58
-
///
59
+
///
59
60
/// For real programmatic static image export use Plotly.NET.ImageExport (https://www.nuget.org/packages/Plotly.NET.ImageExport/)
60
61
///
61
62
/// This yields basically the same results as using `StaticPlot = true` for the chart's config.
@@ -729,11 +730,19 @@ type Chart =
729
730
//======================================= General Layout object styling ========================================
/// Applies the given styles to the chart's Config object. Overwrites attributes with the same name that are already set.
2579
+
/// </summary>
2580
+
/// <param name="StaticPlot">Determines whether the plot is interactive or not. (default: false)</param>
2581
+
/// <param name="PlotlyServerUrl">When set it determines base URL for the 'Edit in Chart Studio'/`showEditInChartStudio`/`showSendToCloud` mode bar button', and the showLink/sendData on-graph link. To enable sending your data to Chart Studio Cloud, you need to' set both `plotlyServerURL` to \'https://chart-studio.plotly.com\' and also set `showSendToCloud` to true.</param>
2582
+
/// <param name="Editable">Determines whether the graph is editable or not. Sets all pieces of `edits` unless a separate `edits` config item overrides individual parts.</param>
2583
+
/// <param name="Edits">Object holding individual editable pieces of the graph.</param>
2584
+
/// <param name="Autosizable">Determines whether the graphs are plotted with respect to layout.autosize:true and infer its container size. (default: false)</param>
2585
+
/// <param name="Responsive">Determines whether to change the layout size when window is resized.</param>
2586
+
/// <param name="ShowSendToCloud">Should we include a ModeBar button, labeled "Edit in Chart Studio",that sends this chart to chart-studio.plotly.com (formerly plot.ly) or another plotly server as specified by `plotlyServerURL` for editing, export, etc? Note that this button can (depending on `plotlyServerURL` being set) send your data to an external server. However that server does not persist your data until you arrive at the Chart Studio and explicitly click "Save".</param>
2587
+
/// <param name="ShowEditInChartStudio">Same as `showSendToCloud`, but use a pencil icon instead of a floppy-disk. Note that if both `showSendToCloud` and `showEditInChartStudio` are turned, only `showEditInChartStudio` will be honored.</param>
2588
+
/// <param name="ToImageButtonOptions">Statically override options for toImage modebar button</param>
2589
+
/// <param name="ModeBarButtonsToAdd">ModeBar buttons to add to the graph.</param>
0 commit comments