diff --git a/README.md b/README.md index fd60545d9..251e89978 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Plotly.NET is an Interactive charting library for **.NET** programming languages 📈🚀. -It is built on top of plotly.js and provides several API layers for creating, styling and rendering ✨**beatiful data visualizations**✨. +It is built on top of plotly.js and provides several API layers for creating, styling and rendering ✨**beautiful data visualizations**✨. To get a deep-dive into the rationale behind the design choices of Plotly.NET, check out our [F1000Research paper](https://doi.org/10.12688/f1000research.123971.1)! diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 3ce57ec72..716a7bc24 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ ### 2.0.0 + -Starting from 2.0.0, Versions of Plotly.NET and expansion packages are decoupled, meaning this single realease notes page does not work anymore. +Starting from 2.0.0, Versions of Plotly.NET and expansion packages are decoupled, meaning this single release notes page does not work anymore. For the individual package release notes, please refer to these files: - [Plotly.NET](./src/Plotly.NET/RELEASE_NOTES.md) @@ -39,7 +39,7 @@ All APIs have changed significantly - this release is incompatible with 1.x and - There are 5 main categories of abstractions: `Trace` (chart data and type), `Layout`(non-data chart styling), `Config`(render options), `DisplayOptions`(html display options), `StyleParam`(DSL for styling options) - Many properties used in these levels are themselves objects, which are in the respective `*Objects` namespace (e.g. `Geo`, which determines map layout of geo traces is an object on the `Layout` and therefore in the `LaoutObjects` namespace.) - every object is based on `DynamicObj` and its properties can therefore be further customised by dynamic member assignment. Therefore, every plotly property can be set manually, even those which do not have direct abstractions. -- There are now several `Trace` types for each kind of subplot (`Trace2D`, `Trace3D`, etc.) and eqivalent `Chart` types (`Chart2D`, `Chart3D`, etc). while not visible from the top level api (everything kan be accessed via the unified `Chart` API), this greatly improves correct multi chart layouting. +- There are now several `Trace` types for each kind of subplot (`Trace2D`, `Trace3D`, etc.) and equivalent `Chart` types (`Chart2D`, `Chart3D`, etc). while not visible from the top level api (everything kan be accessed via the unified `Chart` API), this greatly improves correct multi chart layouting. - There are 3 ways of creating charts with increasing level of customization: 1. The `Chart` API as a unified API surface for chart creation and styling - `Chart.` (e.g. `Chart.Point`) for chart creation from data and some chart specific styling options @@ -259,7 +259,7 @@ Additional functionality and plots thanks to external open source contributors: ### 1.1.2 - Aug 16 2018 * Support .net framework 4.7 -* Minor improvments +* Minor improvements ### 1.1.1 - Jun 22 2018 * Support netStandard 2.0 diff --git a/src/Plotly.NET.CSharp/ChartAPI/Chart2D.cs b/src/Plotly.NET.CSharp/ChartAPI/Chart2D.cs index 3ba286278..7b6ea3966 100644 --- a/src/Plotly.NET.CSharp/ChartAPI/Chart2D.cs +++ b/src/Plotly.NET.CSharp/ChartAPI/Chart2D.cs @@ -191,7 +191,7 @@ public static GenericChart.GenericChart Point( /// Creates a Line chart, which uses a Line plotted between the given datums in a 2D space to visualize typically an evolution of Y depending on X. /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -289,7 +289,7 @@ public static GenericChart.GenericChart Line( /// Very similar to Line Plots, spline charts are typically used to visualize an evolution of Y depending on X. /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. @@ -604,7 +604,7 @@ public static GenericChart.GenericChart Range( /// Creates an Area chart, which uses a Line plotted between the given datums in a 2D space, additionally colouring the area between the line and the Y Axis. /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -698,7 +698,7 @@ public static GenericChart.GenericChart Area( /// Creates a Spline area chart, which uses a smoothed Line plotted between the given datums in a 2D space, additionally colouring the area between the line and the Y Axis. /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. @@ -795,7 +795,7 @@ public static GenericChart.GenericChart SplineArea( /// Creates a stacked Area chart, which uses a Line plotted between the given datums in a 2D space, additionally colouring the area between the line and the Y Axis. Multiple Charts of this type are stacked on top of each others y dimensions /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -1498,7 +1498,7 @@ public static GenericChart.GenericChart StackedColumnSets the outline of the histogram's bars. /// Sets the x error of this trace. /// Sets the y error of this trace. - /// Sets wether and how the cumulative distribution is displayed + /// Sets whether and how the cumulative distribution is displayed /// Sets the style of the hoverlabels of this trace. /// If set to false, ignore the global default settings set in `Defaults` public static GenericChart.GenericChart Histogram( @@ -1581,7 +1581,7 @@ public static GenericChart.GenericChart Histogram( /// Sets the binning across the y dimension /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Picks a smoothing algorithm use to smooth `z` data. /// If set to false, ignore the global default settings set in `Defaults` @@ -1752,12 +1752,12 @@ public static GenericChart.GenericChart BoxPlot( /// Sets the box outline (use this for more finegrained control than the other outline-associated arguments). /// Set several traces linked to the same position axis or matching axes to the same alignmentgroup. This controls whether bars compute their positional range dependently or independently. /// Set several traces linked to the same position axis or matching axes to the same offsetgroup where bars of the same position coordinate will line up. - /// Wether and how to draw a miniature box plot + /// Whether and how to draw a miniature box plot /// Sets the width of the miniature box plot /// Sets the fill color of the miniature box plot /// Sets the styles of the miniature box plot (use this for more finegrained control than the other box-associated arguments) /// Sets the bandwidth used to compute the kernel density estimate. By default, the bandwidth is determined by Silverman's rule of thumb. - /// Wether and how to draw the meanline + /// Whether and how to draw the meanline /// If there are multiple violins that should be sized according to to some metric (see `scalemode`), link them by providing a non-empty group id here shared by every trace in the same group. If a violin's `width` is undefined, `scalegroup` will default to the trace's name. In this case, violins with the same names will be linked together /// Sets the metric by which the width of each violin is determined."width" means each violin has the same (max) width"count" means the violins are scaled by the number of sample points makingup each violin. /// Determines on which side of the position value the density function making up one half of a violin is plotted. Useful when comparing two violin traces under "overlay" mode, where one trace has `side` set to "positive" and the other to "negative". @@ -1864,7 +1864,7 @@ public static GenericChart.GenericChart Violin( /// Sets the contour lines (use this for more finegrained control than the other contourline-associated arguments). /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Sets the style of the contours /// Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is "true" or if `contours.size` is missing. @@ -1949,12 +1949,12 @@ public static GenericChart.GenericChart Histogram2DContour( /// Sets individual text for each datum /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Picks a smoothing algorithm use to smooth `z` data. /// Transposes the z data. - /// Wether or not to use WebGL to render this trace - /// Wether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. + /// Whether or not to use WebGL to render this trace + /// Whether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. /// If set to false, ignore the global default settings set in `Defaults` public static GenericChart.GenericChart Heatmap( IEnumerable> zData, @@ -2024,12 +2024,12 @@ public static GenericChart.GenericChart Heatmap( /// Sets individual text for each datum /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Picks a smoothing algorithm use to smooth `z` data. /// Transposes the z data. - /// Wether or not to use WebGL to render this trace - /// Wether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. + /// Whether or not to use WebGL to render this trace + /// Whether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. /// If set to false, ignore the global default settings set in `Defaults` public static GenericChart.GenericChart AnnotatedHeatmap( IEnumerable> zData, @@ -2141,7 +2141,7 @@ public static GenericChart.GenericChart Image( /// Sets individual text for each datum /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Transposes the z data. /// Sets the contour line dash style @@ -2367,7 +2367,7 @@ public static GenericChart.GenericChart Candlestick( /// Sets the symbol of all marker /// Sets the symbol of each individual marker /// Sets the markers (use this for more finegrained control than the other marker-associated arguments). - /// Wether or not to show the matrix diagional + /// Whether or not to show the matrix diagional /// Sets the styles applied to the scatter plot matrix diagonal /// Determines whether or not subplots on the lower half from the diagonal are displayed. /// Determines whether or not subplots on the upper half from the diagonal are displayed. @@ -2429,15 +2429,15 @@ public static GenericChart.GenericChart Splom( /// Sets the color of the contour lines of the histogram2dcontour trace. /// Sets the smoothing of the contour lines of the histogram2dcontour trace. /// Sets the width of the contour lines of the histogram2dcontour trace. - /// Wether or not to show contour lines - /// Wether or not to show contour labels + /// Whether or not to show contour lines + /// Whether or not to show contour labels /// Determines the coloring method showing the contour values. If "fill", coloring is done evenly between each contour level If "heatmap", a heatmap gradient coloring is applied between each contour level. If "lines", coloring is done on the contour lines. If "none", no coloring is applied on this trace. /// Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is "true" or if `contours.size` is missing. /// Specifies the type of normalization used for this histogram trace. If "", the span of each bar corresponds to the number of occurrences (i.e. the number of data points lying inside the bins). If "percent" / "probability", the span of each bar corresponds to the percentage / fraction of occurrences with respect to the total number of sample points (here, the sum of all bin HEIGHTS equals 100% / 1). If "density", the span of each bar corresponds to the number of occurrences in a bin divided by the size of the bin interval (here, the sum of all bin AREAS equals the total number of sample points). If "probability density", the area of each bar corresponds to the probability that an event will fall into the corresponding bin (here, the sum of all bin AREAS equals 1). /// Sets the opacity of the histogram2dcontour trace. /// Sets the color bar. /// Sets the colorscale of the histogram2dcontour trace. - /// wether or not to show the colorbar + /// whether or not to show the colorbar /// If set to false, ignore the global default settings set in `Defaults` public static GenericChart.GenericChart PointDensity( IEnumerable x, diff --git a/src/Plotly.NET.CSharp/ChartAPI/Chart3D.cs b/src/Plotly.NET.CSharp/ChartAPI/Chart3D.cs index 4fc2b368e..a374a5f55 100644 --- a/src/Plotly.NET.CSharp/ChartAPI/Chart3D.cs +++ b/src/Plotly.NET.CSharp/ChartAPI/Chart3D.cs @@ -185,7 +185,7 @@ public static GenericChart.GenericChart Point3D( /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. /// Sets the z coordinates of the plotted data. - /// Wether to show markers for the datums additionally to the line + /// Whether to show markers for the datums additionally to the line /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -361,7 +361,7 @@ public static GenericChart.GenericChart Bubble3D( /// Sets individual text for each datum /// Sets the contours on the surface /// Sets the colorscale of the surface - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// If set to false, ignore the global default settings set in `Defaults` public static GenericChart.GenericChart Surface( IEnumerable> zData, @@ -424,7 +424,7 @@ public static GenericChart.GenericChart Surface( /// Sets the color of the whole mesh /// Sets the style and visibility of contours /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Determines whether or not normal smoothing is applied to the meshes, creating meshes with an angular, low-poly look via flat reflections. /// Determines how the mesh surface triangles are derived from the set of vertices (points) represented by the `x`, `y` and `z` arrays, if the `i`, `j`, `k` arrays are not supplied. @@ -503,7 +503,7 @@ public static GenericChart.GenericChart Mesh3DSets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Determines whether `sizeref` is set as a "scaled" (i.e unitless) scalar (normalized by the max u/v/w norm in the vector field) or as "absolute" value (in the same units as the vector field). /// Sets the cones' anchor with respect to their x/y/z positions. Note that "cm" denote the cone's center of mass which corresponds to 1/4 from the tail to tip. @@ -580,7 +580,7 @@ public static GenericChart.GenericChart ConeSets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// The maximum number of displayed segments in a streamtube. /// Use this object to specify custom tube start positions @@ -650,7 +650,7 @@ public static GenericChart.GenericChart StreamTubeSets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Sets the minimum boundary for iso-surface plot. /// Sets the maximum boundary for iso-surface plot. @@ -729,7 +729,7 @@ public static GenericChart.GenericChart VolumeSets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Sets the minimum boundary for iso-surface plot. /// Sets the maximum boundary for iso-surface plot. diff --git a/src/Plotly.NET.CSharp/ChartAPI/ChartCarpet.cs b/src/Plotly.NET.CSharp/ChartAPI/ChartCarpet.cs index 8ef4823f2..30fbc658f 100644 --- a/src/Plotly.NET.CSharp/ChartAPI/ChartCarpet.cs +++ b/src/Plotly.NET.CSharp/ChartAPI/ChartCarpet.cs @@ -96,7 +96,7 @@ public static GenericChart.GenericChart Carpet @@ -186,7 +186,7 @@ public static GenericChart.GenericChart ScatterCarpet( /// /// In general, PointCarpet creates a point plot that uses the given carpet identifier as coordinate system. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a-axis coordinates on the carpet. /// Sets the b-axis coordinates on the carpet. @@ -256,12 +256,12 @@ public static GenericChart.GenericChart PointCarpet( /// /// In general, LineCarpet creates a line plot that uses the given carpet identifier as coordinate system. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a-axis coordinates on the carpet. /// Sets the b-axis coordinates on the carpet. /// The identifier of the carpet that this trace will lie on. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -345,12 +345,12 @@ public static GenericChart.GenericChart LineCarpet( /// In general, SplineCarpet creates a spline plot that uses the given carpet identifier as coordinate system. /// A spline chart is a line chart in which data points are connected by smoothed curves. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a-axis coordinates on the carpet. /// Sets the b-axis coordinates on the carpet. /// The identifier of the carpet that this trace will lie on. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. @@ -438,7 +438,7 @@ public static GenericChart.GenericChart SplineCarpet( /// /// A bubble chart is a variation of the Point chart, where the data points get an additional scale by being rendered as bubbles of different sizes. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a-axis coordinates on the carpet. /// Sets the b-axis coordinates on the carpet. diff --git a/src/Plotly.NET.CSharp/ChartAPI/ChartDomain.cs b/src/Plotly.NET.CSharp/ChartAPI/ChartDomain.cs index 1e2c4937e..a9eba300c 100644 --- a/src/Plotly.NET.CSharp/ChartAPI/ChartDomain.cs +++ b/src/Plotly.NET.CSharp/ChartAPI/ChartDomain.cs @@ -101,7 +101,7 @@ public static GenericChart.GenericChart Pie( /// /// Creates a doughnut chart. /// - /// A doughnut chart is a variation of the pie chart that has a fraction cut fron the center of the slices. + /// A doughnut chart is a variation of the pie chart that has a fraction cut from the center of the slices. /// /// Sets the values of the sectors /// Sets the trace name. The trace name appear as the legend item and on hover @@ -276,8 +276,8 @@ public static GenericChart.GenericChart FunnelAreaSets text elements associated with each (x,y) pair. If a single string, the same string appears over all the data points. If an array of string, the items are mapped in order to the this trace's (x,y) coordinates. If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. /// Sets the colors associated with each section. /// Sets the colorscale for the section values - /// Wether or not to show the section colorbar - /// Wether or not to show the section colorscale + /// Whether or not to show the section colorbar + /// Whether or not to show the section colorscale /// Sets the color of the section outline. /// Sets the width of the section outline. /// Sets the width of each individual section outline. @@ -286,8 +286,8 @@ public static GenericChart.GenericChart FunnelAreaDetermines which trace information appear on the graph. /// Determines how the items in `values` are summed. When set to "total", items in `values` are taken to be value of all its descendants. When set to "remainder", items in `values` corresponding to the root and the branches sectors are taken to be the extra part not part of the sum of the values at their leaves. /// Determines default for `values` when it is not provided, by inferring a 1 for each of the "leaves" and/or "branches", otherwise 0. - /// Sets the styles fot the root of this trace. - /// Sets the styles fot the leaves of this trace. + /// Sets the styles for the root of this trace. + /// Sets the styles for the leaves of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// Rotates the whole diagram counterclockwise by some angle. By default the first slice starts at 3 o'clock. @@ -383,8 +383,8 @@ public static GenericChart.GenericChart SunburstSets the positions of the `text` elements with respects to the (x,y) coordinates. /// Sets the colors associated with each section. /// Sets the colorscale for the section values - /// Wether or not to show the section colorbar - /// Wether or not to show the section colorscale + /// Whether or not to show the section colorbar + /// Whether or not to show the section colorscale /// Sets the color of the section outline. /// Sets the width of the section outline. /// Sets the width of each individual section outline. @@ -395,7 +395,7 @@ public static GenericChart.GenericChart SunburstDetermines default for `values` when it is not provided, by inferring a 1 for each of the "leaves" and/or "branches", otherwise 0. /// Sets the tiling for this trace. /// Sets the path bar for this trace. - /// Sets the styles fot the root of this trace. + /// Sets the styles for the root of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// If set to false, ignore the global default settings set in `Defaults` @@ -481,8 +481,8 @@ public static GenericChart.GenericChart TreemapSets the trace name. The trace name appear as the legend item and on hover /// Sets the color of the lines that are connecting the datums on the dimensions /// Sets the colorscale of the lines that are connecting the datums on the dimensions - /// Wether or not to show the colorbar of the lines that are connecting the datums on the dimensions - /// Wether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions + /// Whether or not to show the colorbar of the lines that are connecting the datums on the dimensions + /// Whether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions /// Sets the lines that are connecting the datums on the dimensions (use this for more finegrained control than the other line-associated arguments). /// Sets the angle of the labels with respect to the horizontal. For example, a `tickangle` of -90 draws the labels vertically. Tilted labels with "labelangle" may be positioned better inside margins when `labelposition` is set to "bottom". /// Sets the label font of this trace. @@ -536,8 +536,8 @@ public static GenericChart.GenericChart ParallelCoord( /// Sets the color of the lines that are connecting the datums on the dimensions /// Sets the shape of the lines that are connecting the datums on the dimensions /// Sets the colorscale of the lines that are connecting the datums on the dimensions - /// Wether or not to show the colorbar of the lines that are connecting the datums on the dimensions - /// Wether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions + /// Whether or not to show the colorbar of the lines that are connecting the datums on the dimensions + /// Whether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions /// Sets the lines that are connecting the datums on the dimensions (use this for more finegrained control than the other line-associated arguments). /// Sets the drag interaction mode for categories and dimensions. If `perpendicular`, the categories can only move along a line perpendicular to the paths. If `freeform`, the categories can freely move on the plane. If `fixed`, the categories and dimensions are stationary. /// Sort paths so that like colors are bundled together within each category. @@ -676,7 +676,7 @@ public static GenericChart.GenericChart Table( /// Sets the styles of the displayed number /// Sets the shape of the gauge /// Sets the styles of the gauge - /// Wether or not to show the gauge axis + /// Whether or not to show the gauge axis /// Sets the gauge axis /// public static GenericChart.GenericChart Indicator( @@ -735,8 +735,8 @@ public static GenericChart.GenericChart Indicator( /// Sets the positions of the `text` elements with respects to the (x,y) coordinates. /// Sets the colors associated with each section. /// Sets the colorscale for the section values - /// Wether or not to show the section colorbar - /// Wether or not to show the section colorscale + /// Whether or not to show the section colorbar + /// Whether or not to show the section colorscale /// Sets the color of the section outline. /// Sets the width of the section outline. /// Sets the width of each individual section outline. @@ -750,7 +750,7 @@ public static GenericChart.GenericChart Indicator( /// Sets the edge shape of the pathbar. /// Sets the pathbar /// Determines which trace information appear on the graph. - /// Sets the styles fot the root of this trace. + /// Sets the styles for the root of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// If set to false, ignore the global default settings set in `Defaults` diff --git a/src/Plotly.NET.CSharp/ChartAPI/ChartMap.cs b/src/Plotly.NET.CSharp/ChartAPI/ChartMap.cs index f32f382a6..ce4df89d8 100644 --- a/src/Plotly.NET.CSharp/ChartAPI/ChartMap.cs +++ b/src/Plotly.NET.CSharp/ChartAPI/ChartMap.cs @@ -436,7 +436,7 @@ public static GenericChart.GenericChart BubbleGeosets the drawing style of the line /// Sets the line (use this for more finegrained control than the other line-associated arguments) /// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''". - /// Wether or not to enable clustering for points + /// Whether or not to enable clustering for points /// Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments) /// If set to false, ignore the global default settings set in `Defaults` public static GenericChart.GenericChart ScatterMapbox( @@ -524,7 +524,7 @@ public static GenericChart.GenericChart ScatterMapboxSets the marker symbol for each individual datum /// Sets the marker (use this for more finegrained control than the other marker-associated arguments) /// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''". - /// Wether or not to enable clustering for points + /// Whether or not to enable clustering for points /// Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments) /// If set to false, ignore the global default settings set in `Defaults` public static GenericChart.GenericChart PointMapbox( diff --git a/src/Plotly.NET.CSharp/ChartAPI/ChartPolar.cs b/src/Plotly.NET.CSharp/ChartAPI/ChartPolar.cs index 0e213da12..1389f3532 100644 --- a/src/Plotly.NET.CSharp/ChartAPI/ChartPolar.cs +++ b/src/Plotly.NET.CSharp/ChartAPI/ChartPolar.cs @@ -177,7 +177,7 @@ public static GenericChart.GenericChart PointPolar( /// /// Sets the radial coordinates of the plotted data /// Sets the angular coordinates of the plotted data - /// Wether to show markers for the datums additionally to the line + /// Whether to show markers for the datums additionally to the line /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -264,7 +264,7 @@ public static GenericChart.GenericChart LinePolar( /// /// Sets the radial coordinates of the plotted data /// Sets the angular coordinates of the plotted data - /// Wether to show markers for the datums additionally to the line + /// Whether to show markers for the datums additionally to the line /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. diff --git a/src/Plotly.NET.CSharp/ChartAPI/ChartSmith.cs b/src/Plotly.NET.CSharp/ChartAPI/ChartSmith.cs index 7baf8b4ae..8c3520ddf 100644 --- a/src/Plotly.NET.CSharp/ChartAPI/ChartSmith.cs +++ b/src/Plotly.NET.CSharp/ChartAPI/ChartSmith.cs @@ -170,7 +170,7 @@ public static GenericChart.GenericChart PointSmith /// /// Sets the real component of the data, in units of normalized impedance such that real=1, imag=0 is the center of the chart. /// Sets the imaginary component of the data, in units of normalized impedance such that real=1, imag=0 is the center of the chart. - /// Wether or not to show markers for each datum. + /// Whether or not to show markers for each datum. /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace diff --git a/src/Plotly.NET.CSharp/ChartAPI/ChartTernary.cs b/src/Plotly.NET.CSharp/ChartAPI/ChartTernary.cs index 00775da72..58a5c0e9b 100644 --- a/src/Plotly.NET.CSharp/ChartAPI/ChartTernary.cs +++ b/src/Plotly.NET.CSharp/ChartAPI/ChartTernary.cs @@ -186,7 +186,7 @@ public static GenericChart.GenericChart PointTernarySets the quantity of component `b` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`. /// Sets the quantity of component `c` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`. /// The number each triplet should sum to, if only two of `a`, `b`, and `c` are provided. This overrides `ternary<i>.sum` to normalize this specific trace, but does not affect the values displayed on the axes. 0 (or missing) means to use `ternary<i>.sum` - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace diff --git a/src/Plotly.NET.CSharp/GenericChartExtensions.cs b/src/Plotly.NET.CSharp/GenericChartExtensions.cs index f399db190..96184ff1f 100644 --- a/src/Plotly.NET.CSharp/GenericChartExtensions.cs +++ b/src/Plotly.NET.CSharp/GenericChartExtensions.cs @@ -29,7 +29,7 @@ public static class GenericChartExtensions /// /// The chart to save as html file. /// The path to save the chart html at. - /// Wether or not to open the generated file in the browser (default: false) + /// Whether or not to open the generated file in the browser (default: false) public static void SaveHtml( this GenericChart.GenericChart gChart, string path, @@ -51,7 +51,7 @@ public static void SaveHtml( /// /// The chart in which to change the trace info /// Sets the name of the chart's trace(s). When the chart is a multichart (it contains multiple traces), the name is suffixed by '_%i' where %i is the index of the trace. - /// Wether or not the chart's traces are visible + /// Whether or not the chart's traces are visible /// Determines whether or not item(s) corresponding to this chart's trace(s) is/are shown in the legend. /// Sets the legend rank for the chart's trace(s). Items and groups with smaller ranks are presented on top/left side while with `"reversed" `legend.traceorder` they are on bottom/right side. The default legendrank is 1000, so that you can use ranks less than 1000 to place certain items before all unranked items, and ranks greater than 1000 to go after all unranked items. /// Sets the legend group for the chart's trace(s). Traces part of the same legend group hide/show at the same time when toggling legend items. diff --git a/src/Plotly.NET.CSharp/Optional.cs b/src/Plotly.NET.CSharp/Optional.cs index 1dd64fdb2..87de3e02e 100644 --- a/src/Plotly.NET.CSharp/Optional.cs +++ b/src/Plotly.NET.CSharp/Optional.cs @@ -12,14 +12,14 @@ namespace Plotly.NET.CSharp /// with a type constraint for `IConvertible`. This means that these parameters can be both value and reference types /// (e.g. `double` and `System.DateTime` both implement IConvertible). /// If we now have a optional parameter of type `T? where T: IConvertible` the compiler will not allow this - /// without further type constrainst to eithe reference or value type. + /// without further type constrainst to either reference or value type. /// This is a problem because we want to 1. allow both, and 2. have a reliable way of determining if the value was not set /// because the F# API expects to be passed `Option.None` in that case. /// There exist other workarounds like checking if the value is default or null, but that changes valid default values actually set to null as well. /// /// /// The value to mark as optional - /// Wether or not the wrapped value is valid. This is used downstream to determine wether to wrap this value into `Option.Some` (if true) or `Option.None` (if false) + /// Whether or not the wrapped value is valid. This is used downstream to determine whether to wrap this value into `Option.Some` (if true) or `Option.None` (if false) public readonly record struct Optional(T Value, bool IsSome) { /// diff --git a/src/Plotly.NET/CSharpLayer/GenericChartExtensions.fs b/src/Plotly.NET/CSharpLayer/GenericChartExtensions.fs index 6eea7f06c..8b3d2fca0 100644 --- a/src/Plotly.NET/CSharpLayer/GenericChartExtensions.fs +++ b/src/Plotly.NET/CSharpLayer/GenericChartExtensions.fs @@ -645,7 +645,7 @@ module GenericChartExtensions = /// /// Center : Sets the (lon,lat) coordinates of the map's center. By default, the map's longitude center lies at the middle of the longitude range for scoped projection and above `projection.rotation.lon` otherwise. For all projection types, the map's latitude center lies at the middle of the latitude range by default. /// - /// Visible : Wether or not the base layers are visible + /// Visible : Whether or not the base layers are visible /// /// Domain : The domain of this geo subplot /// diff --git a/src/Plotly.NET/ChartAPI/Chart.fs b/src/Plotly.NET/ChartAPI/Chart.fs index cf4f4368d..ae0817470 100644 --- a/src/Plotly.NET/ChartAPI/Chart.fs +++ b/src/Plotly.NET/ChartAPI/Chart.fs @@ -23,7 +23,7 @@ type Chart = /// Optionally opens the generated file in the browser. /// /// The path to save the chart html at. - /// Wether or not to open the generated file in the browser (default: false) + /// Whether or not to open the generated file in the browser (default: false) [] static member saveHtml(path: string, [] ?OpenInBrowser: bool) = fun (ch: GenericChart) -> @@ -85,7 +85,7 @@ type Chart = /// Sets trace information on the given chart. /// /// Sets the name of the chart's trace(s). When the chart is a multichart (it contains multiple traces), the name is suffixed by '_%i' where %i is the index of the trace. - /// Wether or not the chart's traces are visible + /// Whether or not the chart's traces are visible /// Determines whether or not item(s) corresponding to this chart's trace(s) is/are shown in the legend. /// Sets the legend rank for the chart's trace(s). Items and groups with smaller ranks are presented on top/left side while with `"reversed" `legend.traceorder` they are on bottom/right side. The default legendrank is 1000, so that you can use ranks less than 1000 to place certain items before all unranked items, and ranks greater than 1000 to go after all unranked items. /// Sets the legend group for the chart's trace(s). Traces part of the same legend group hide/show at the same time when toggling legend items. @@ -159,7 +159,7 @@ type Chart = /// Sets the marker for the chart's trace(s). /// /// The new marker for the chart's trace(s) - /// Wether or not to combine the objects if there is already a marker (default is false) + /// Whether or not to combine the objects if there is already a marker (default is false) [] static member setMarker(marker: Marker, ?Combine: bool) = let combine = defaultArg Combine false @@ -300,7 +300,7 @@ type Chart = /// Sets the line for the chart's trace(s). /// /// The new Line for the chart's trace(s) - /// Wether or not to combine the objects if there is already a Line (default is false) + /// Whether or not to combine the objects if there is already a Line (default is false) [] static member setLine(line: Line, ?Combine: bool) = let combine = defaultArg Combine false @@ -334,7 +334,7 @@ type Chart = /// Sets a reference to a shared color axis. References to these shared color axes are "coloraxis", "coloraxis2", "coloraxis3", etc. Settings for these shared color axes are set in the layout, under `layout.coloraxis`, `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. /// Sets the line colorscale /// Reverses the color mapping if true. - /// Wether or not to show the color bar + /// Whether or not to show the color bar /// Sets the colorbar. /// Sets the dash style of lines. Set to a dash type string ("solid", "dot", "dash", "longdash", "dashdot", or "longdashdot") or a dash length list in px (eg "5px,10px,2px,2px"). /// Determines the line shape. With "spline" the lines are drawn using spline interpolation. The other available values correspond to step-wise line shapes. @@ -399,7 +399,7 @@ type Chart = /// Sets the error for the x dimension for the chart's trace(s). /// /// The new Error in the x dimension for the chart's trace(s) - /// Wether or not to combine the objects if there is already an Error object set (default is false) + /// Whether or not to combine the objects if there is already an Error object set (default is false) [] static member setXError(xError: Error, ?Combine: bool) = let combine = defaultArg Combine false @@ -477,7 +477,7 @@ type Chart = /// Sets the error for the y dimension for the chart's trace(s). /// /// The new Error in the x dimension for the chart's trace(s) - /// Wether or not to combine the objects if there is already an Error object set (default is false) + /// Whether or not to combine the objects if there is already an Error object set (default is false) [] static member setYError(yError: Error, ?Combine: bool) = let combine = defaultArg Combine false @@ -555,7 +555,7 @@ type Chart = /// Sets the error for the z dimension for the chart's trace(s). /// /// The new Error in the x dimension for the chart's trace(s) - /// Wether or not to combine the objects if there is already an Error object set (default is false) + /// Whether or not to combine the objects if there is already an Error object set (default is false) [] static member setZError(zError: Error, ?Combine: bool) = let combine = defaultArg Combine false @@ -633,7 +633,7 @@ type Chart = /// Sets the ColorBar for the chart's trace(s). /// /// The new ColorBar for the chart's trace(s) - /// Wether or not to combine the objects if there is already a ColorBar object set (default is false) + /// Whether or not to combine the objects if there is already a ColorBar object set (default is false) [] static member setColorBar(colorBar: ColorBar, ?Combine: bool) = let combine = defaultArg Combine false @@ -983,8 +983,8 @@ type Chart = /// /// The x axis to set on the chart's layout /// The target axis id with which the axis should be set. - /// If set on a scene, define wether it is the x, y or z axis. default is x. - /// Wether or not to combine the objects if there is already an axis set (default is false) + /// If set on a scene, define whether it is the x, y or z axis. default is x. + /// Whether or not to combine the objects if there is already an axis set (default is false) [] static member setAxis ( @@ -1464,7 +1464,7 @@ type Chart = /// /// The Scene object to set on the chart's layout /// The target scene id with which the Scene object should be set. - /// Wether or not to combine the objects if there is already an Scene set (default is false) + /// Whether or not to combine the objects if there is already an Scene set (default is false) [] static member setScene ( @@ -1554,7 +1554,7 @@ type Chart = /// /// The Polar object to set on the chart's layout /// The target polar id with which the Polar object should be set. - /// Wether or not to combine the objects if there is already an Polar set (default is false) + /// Whether or not to combine the objects if there is already an Polar set (default is false) [] static member setPolar ( @@ -1632,7 +1632,7 @@ type Chart = /// /// The AngularAxis to set on the target polar object on the chart's layout /// The target polar id with which the AngularAxis should be set.(default is 1) - /// Wether or not to combine the objects if there is already an axis set (default is false) + /// Whether or not to combine the objects if there is already an axis set (default is false) [] static member setAngularAxis ( @@ -1691,7 +1691,7 @@ type Chart = /// /// The RadialAxis to set on the target polar object on the chart's layout /// The target polar id with which the RadialAxis should be set.(default is 1) - /// Wether or not to combine the objects if there is already an axis set (default is false) + /// Whether or not to combine the objects if there is already an axis set (default is false) [] static member setRadialAxis ( @@ -1750,7 +1750,7 @@ type Chart = /// /// The Smith object to set on the chart's layout /// The target smith id with which the Smith object should be set. - /// Wether or not to combine the objects if there is already an Smith set (default is false) + /// Whether or not to combine the objects if there is already an Smith set (default is false) [] static member setSmith ( @@ -1807,7 +1807,7 @@ type Chart = /// /// The ImaginaryAxis to set on the target polar object on the chart's layout /// The target polar id with which the ImaginaryAxis should be set.(default is 1) - /// Wether or not to combine the objects if there is already an axis set (default is false) + /// Whether or not to combine the objects if there is already an axis set (default is false) [] static member setImaginaryAxis ( @@ -1866,7 +1866,7 @@ type Chart = /// /// The RealAxis to set on the target smith object on the chart's layout /// The target smith id with which the RealAxis should be set.(default is 1) - /// Wether or not to combine the objects if there is already an axis set (default is false) + /// Whether or not to combine the objects if there is already an axis set (default is false) [] static member setRealAxis ( @@ -1924,7 +1924,7 @@ type Chart = /// /// The Geo object to set on the chart's layout /// The target Geo id with which the Geo object should be set. - /// Wether or not to combine the objects if there is already an Geo set (default is false) + /// Whether or not to combine the objects if there is already an Geo set (default is false) [] static member setGeo(geo: Geo, id: StyleParam.SubPlotId, [] ?Combine: bool) = @@ -1960,7 +1960,7 @@ type Chart = /// Set the scope of the map. /// Determines the type of projection used to display the map /// Sets the (lon,lat) coordinates of the map's center. By default, the map's longitude center lies at the middle of the longitude range for scoped projection and above `projection.rotation.lon` otherwise. For all projection types, the map's latitude center lies at the middle of the latitude range by default. - /// Wether or not the base layers are visible + /// Whether or not the base layers are visible /// The domain of this geo subplot /// Sets whether or not the coastlines are drawn. /// Sets the coastline color. @@ -2099,7 +2099,7 @@ type Chart = /// /// The Mapbox object to set on the chart's layout /// The target Mapbox id with which the Mapbox object should be set. - /// Wether or not to combine the objects if there is already an Mapbox set (default is false) + /// Whether or not to combine the objects if there is already an Mapbox set (default is false) [] static member setMapbox ( @@ -2176,7 +2176,7 @@ type Chart = /// /// The Ternary object to set on the chart's layout /// The target Ternary id with which the Ternary object should be set. - /// Wether or not to combine the objects if there is already an Ternary set (default is false) + /// Whether or not to combine the objects if there is already an Ternary set (default is false) [] static member setTernary ( @@ -2247,7 +2247,7 @@ type Chart = /// /// The a Axis to set on the target ternary object on the chart's layout /// The target ternary id with which the a Axis should be set.(default is 1) - /// Wether or not to combine the objects if there is already an axis set (default is false) + /// Whether or not to combine the objects if there is already an axis set (default is false) [] static member setAAxis ( @@ -2307,7 +2307,7 @@ type Chart = /// /// The b Axis to set on the target ternary object on the chart's layout /// The target ternary id with which the b Axis should be set.(default is 1) - /// Wether or not to combine the objects if there is already an axis set (default is false) + /// Whether or not to combine the objects if there is already an axis set (default is false) [] static member setBAxis ( @@ -2367,7 +2367,7 @@ type Chart = /// /// The c Axis to set on the target ternary object on the chart's layout /// The target ternary id with which the c Axis should be set.(default is 1) - /// Wether or not to combine the objects if there is already an axis set (default is false) + /// Whether or not to combine the objects if there is already an axis set (default is false) [] static member setCAxis ( @@ -2426,7 +2426,7 @@ type Chart = /// Sets the LayoutGrid for the chart's layout. /// /// The new LayoutGrid for the chart's layout - /// Wether or not to combine the objects if there is already a ColorBar object set (default is false) + /// Whether or not to combine the objects if there is already a ColorBar object set (default is false) [] static member setLayoutGrid(layoutGrid: LayoutGrid, ?Combine: bool) = let combine = defaultArg Combine false @@ -2504,7 +2504,7 @@ type Chart = /// Sets the Legend for the chart's layout. /// /// The new Legend for the chart's layout - /// Wether or not to combine the objects if there is already a Legend object set (default is false) + /// Whether or not to combine the objects if there is already a Legend object set (default is false) [] static member setLegend(legend: Legend, ?Combine: bool) = let combine = defaultArg Combine false @@ -3043,8 +3043,8 @@ type Chart = gChart |> Chart.withAxisAnchor (xAnchor, yAnchor) // set adapted axis anchors - |> Chart.withXAxis (xAxis, (StyleParam.SubPlotId.XAxis(i + 1))) // set previous axis with adapted id (one individual axis for each subplot, wether or not they will be used later) - |> Chart.withYAxis (yAxis, (StyleParam.SubPlotId.YAxis(i + 1))) // set previous axis with adapted id (one individual axis for each subplot, wether or not they will be used later) + |> Chart.withXAxis (xAxis, (StyleParam.SubPlotId.XAxis(i + 1))) // set previous axis with adapted id (one individual axis for each subplot, whether or not they will be used later) + |> Chart.withYAxis (yAxis, (StyleParam.SubPlotId.YAxis(i + 1))) // set previous axis with adapted id (one individual axis for each subplot, whether or not they will be used later) |> GenericChart.mapLayout (fun l -> if i > 0 then // remove default axes from consecutive charts, otherwise they will override the first one diff --git a/src/Plotly.NET/ChartAPI/Chart2D.fs b/src/Plotly.NET/ChartAPI/Chart2D.fs index 350f21342..bb8c513f5 100644 --- a/src/Plotly.NET/ChartAPI/Chart2D.fs +++ b/src/Plotly.NET/ChartAPI/Chart2D.fs @@ -544,7 +544,7 @@ module Chart2D = /// Creates a Line chart, which uses a Line plotted between the given datums in a 2D space to visualize typically an evolution of Y depending on X. /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -661,7 +661,7 @@ module Chart2D = /// Creates a Line chart, which uses a Line plotted between the given datums in a 2D space to visualize typically an evolution of Y depending on X. /// Sets the x,y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -768,7 +768,7 @@ module Chart2D = /// Very similar to Line Plots, spline charts are typically used to visualize an evolution of Y depending on X. /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. @@ -909,7 +909,7 @@ module Chart2D = /// Very similar to Line Plots, spline charts are typically used to visualize an evolution of Y depending on X. /// /// Sets the x,y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. @@ -1553,7 +1553,7 @@ module Chart2D = /// Creates an Area chart, which uses a Line plotted between the given datums in a 2D space, additionally colouring the area between the line and the Y Axis. /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -1664,7 +1664,7 @@ module Chart2D = /// Creates an Area chart, which uses a Line plotted between the given datums in a 2D space, additionally colouring the area between the line and the Y Axis. /// Sets the x and y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -1771,7 +1771,7 @@ module Chart2D = /// Creates a Spline area chart, which uses a smoothed Line plotted between the given datums in a 2D space, additionally colouring the area between the line and the Y Axis. /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. @@ -1884,7 +1884,7 @@ module Chart2D = /// Creates a Spline area chart, which uses a smoothed Line plotted between the given datums in a 2D space, additionally colouring the area between the line and the Y Axis. /// Sets the x and y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. @@ -1992,7 +1992,7 @@ module Chart2D = /// Creates a stacked Area chart, which uses a Line plotted between the given datums in a 2D space, additionally colouring the area between the line and the Y Axis. Multiple Charts of this type are stacked on top of each others y dimensions /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -2093,7 +2093,7 @@ module Chart2D = /// Creates a stacked Area chart, which uses a Line plotted between the given datums in a 2D space, additionally colouring the area between the line and the Y Axis. Multiple Charts of this type are stacked on top of each others y dimensions /// Sets the x and y coordinates of the plotted data. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -3367,7 +3367,7 @@ module Chart2D = /// Sets the outline of the histogram's bars. /// Sets the x error of this trace. /// Sets the y error of this trace. - /// Sets wether and how the cumulative distribution is displayed + /// Sets whether and how the cumulative distribution is displayed /// Sets the style of the hoverlabels of this trace. /// If set to false, ignore the global default settings set in `Defaults` [] @@ -3488,7 +3488,7 @@ module Chart2D = /// Sets the outline of the histogram's bars. /// Sets the x error of this trace. /// Sets the y error of this trace. - /// Sets wether and how the cumulative distribution is displayed + /// Sets whether and how the cumulative distribution is displayed /// Sets the style of the hoverlabels of this trace. /// If set to false, ignore the global default settings set in `Defaults` [] @@ -3578,7 +3578,7 @@ module Chart2D = /// Sets the binning across the y dimension /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Picks a smoothing algorithm use to smooth `z` data. /// If set to false, ignore the global default settings set in `Defaults` @@ -3660,7 +3660,7 @@ module Chart2D = /// Sets the binning across the y dimension /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Picks a smoothing algorithm use to smooth `z` data. /// If set to false, ignore the global default settings set in `Defaults` @@ -4033,12 +4033,12 @@ module Chart2D = /// Sets the box outline (use this for more finegrained control than the other outline-associated arguments). /// Set several traces linked to the same position axis or matching axes to the same alignmentgroup. This controls whether bars compute their positional range dependently or independently. /// Set several traces linked to the same position axis or matching axes to the same offsetgroup where bars of the same position coordinate will line up. - /// Wether and how to draw a miniature box plot + /// Whether and how to draw a miniature box plot /// Sets the width of the miniature box plot /// Sets the fill color of the miniature box plot /// Sets the styles of the miniature box plot (use this for more finegrained control than the other box-associated arguments) /// Sets the bandwidth used to compute the kernel density estimate. By default, the bandwidth is determined by Silverman's rule of thumb. - /// Wether and how to draw the meanline + /// Whether and how to draw the meanline /// If there are multiple violins that should be sized according to to some metric (see `scalemode`), link them by providing a non-empty group id here shared by every trace in the same group. If a violin's `width` is undefined, `scalegroup` will default to the trace's name. In this case, violins with the same names will be linked together /// Sets the metric by which the width of each violin is determined."width" means each violin has the same (max) width"count" means the violins are scaled by the number of sample points makingup each violin. /// Determines on which side of the position value the density function making up one half of a violin is plotted. Useful when comparing two violin traces under "overlay" mode, where one trace has `side` set to "positive" and the other to "negative". @@ -4161,12 +4161,12 @@ module Chart2D = /// Sets the box outline (use this for more finegrained control than the other outline-associated arguments). /// Set several traces linked to the same position axis or matching axes to the same alignmentgroup. This controls whether bars compute their positional range dependently or independently. /// Set several traces linked to the same position axis or matching axes to the same offsetgroup where bars of the same position coordinate will line up. - /// Wether and how to draw a miniature box plot + /// Whether and how to draw a miniature box plot /// Sets the width of the miniature box plot /// Sets the fill color of the miniature box plot /// Sets the styles of the miniature box plot (use this for more finegrained control than the other box-associated arguments) /// Sets the bandwidth used to compute the kernel density estimate. By default, the bandwidth is determined by Silverman's rule of thumb. - /// Wether and how to draw the meanline + /// Whether and how to draw the meanline /// If there are multiple violins that should be sized according to to some metric (see `scalemode`), link them by providing a non-empty group id here shared by every trace in the same group. If a violin's `width` is undefined, `scalegroup` will default to the trace's name. In this case, violins with the same names will be linked together /// Sets the metric by which the width of each violin is determined."width" means each violin has the same (max) width"count" means the violins are scaled by the number of sample points makingup each violin. /// Determines on which side of the position value the density function making up one half of a violin is plotted. Useful when comparing two violin traces under "overlay" mode, where one trace has `side` set to "positive" and the other to "negative". @@ -4272,12 +4272,12 @@ module Chart2D = /// Sets the box outline (use this for more finegrained control than the other outline-associated arguments). /// Set several traces linked to the same position axis or matching axes to the same alignmentgroup. This controls whether bars compute their positional range dependently or independently. /// Set several traces linked to the same position axis or matching axes to the same offsetgroup where bars of the same position coordinate will line up. - /// Wether and how to draw a miniature box plot + /// Whether and how to draw a miniature box plot /// Sets the width of the miniature box plot /// Sets the fill color of the miniature box plot /// Sets the styles of the miniature box plot (use this for more finegrained control than the other box-associated arguments) /// Sets the bandwidth used to compute the kernel density estimate. By default, the bandwidth is determined by Silverman's rule of thumb. - /// Wether and how to draw the meanline + /// Whether and how to draw the meanline /// If there are multiple violins that should be sized according to to some metric (see `scalemode`), link them by providing a non-empty group id here shared by every trace in the same group. If a violin's `width` is undefined, `scalegroup` will default to the trace's name. In this case, violins with the same names will be linked together /// Sets the metric by which the width of each violin is determined."width" means each violin has the same (max) width"count" means the violins are scaled by the number of sample points makingup each violin. /// Determines on which side of the position value the density function making up one half of a violin is plotted. Useful when comparing two violin traces under "overlay" mode, where one trace has `side` set to "positive" and the other to "negative". @@ -4387,7 +4387,7 @@ module Chart2D = /// Sets the contour lines (use this for more finegrained control than the other contourline-associated arguments). /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Sets the style of the contours /// Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is "true" or if `contours.size` is missing. @@ -4495,7 +4495,7 @@ module Chart2D = /// Sets the contour lines (use this for more finegrained control than the other contourline-associated arguments). /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Sets the style of the contours /// Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is "true" or if `contours.size` is missing. @@ -4580,12 +4580,12 @@ module Chart2D = /// Sets individual text for each datum /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Picks a smoothing algorithm use to smooth `z` data. /// Transposes the z data. - /// Wether or not to use WebGL to render this trace - /// Wether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. + /// Whether or not to use WebGL to render this trace + /// Whether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. /// If set to false, ignore the global default settings set in `Defaults` [] static member Heatmap @@ -4667,12 +4667,12 @@ module Chart2D = /// Sets individual text for each datum /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Picks a smoothing algorithm use to smooth `z` data. /// Transposes the z data. - /// Wether or not to use WebGL to render this trace - /// Wether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. + /// Whether or not to use WebGL to render this trace + /// Whether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. /// If set to false, ignore the global default settings set in `Defaults` [] static member Heatmap @@ -4742,12 +4742,12 @@ module Chart2D = /// Sets individual text for each datum /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Picks a smoothing algorithm use to smooth `z` data. /// Transposes the z data. - /// Wether or not to use WebGL to render this trace - /// Wether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. + /// Whether or not to use WebGL to render this trace + /// Whether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. /// If set to false, ignore the global default settings set in `Defaults` [] static member AnnotatedHeatmap @@ -4847,12 +4847,12 @@ module Chart2D = /// Sets individual text for each datum /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Picks a smoothing algorithm use to smooth `z` data. /// Transposes the z data. - /// Wether or not to use WebGL to render this trace - /// Wether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. + /// Whether or not to use WebGL to render this trace + /// Whether or not to reverse the y axis. If true, (0,0) will lie on the top left and increase downwards. /// If set to false, ignore the global default settings set in `Defaults` [] static member AnnotatedHeatmap @@ -5036,7 +5036,7 @@ module Chart2D = /// Sets individual text for each datum /// Sets the styles of the colorbar for this trace. /// Sets the colorscale for this trace. - /// Wether or not to show the colorscale/colorbar + /// Whether or not to show the colorscale/colorbar /// Reverses the color mapping if true. If true, `zmin` will correspond to the last color in the array and `zmax` will correspond to the first color. /// Transposes the z data. /// Sets the contour line dash style @@ -5155,7 +5155,7 @@ module Chart2D = /// Sets the color of decreasing values /// Sets the style options of decreasing values (use this for more finegrained control than the other increasing-associated arguments). /// Sets the width of the open/close tick marks relative to the "x" minimal interval. - /// Wether or not to show a rangeslider for the xaxis + /// Whether or not to show a rangeslider for the xaxis /// If set to false, ignore the global default settings set in `Defaults` [] static member OHLC @@ -5243,7 +5243,7 @@ module Chart2D = /// Sets the color of decreasing values /// Sets the style options of decreasing values (use this for more finegrained control than the other increasing-associated arguments). /// Sets the width of the open/close tick marks relative to the "x" minimal interval. - /// Wether or not to show a rangeslider for the xaxis + /// Whether or not to show a rangeslider for the xaxis /// If set to false, ignore the global default settings set in `Defaults` [] static member OHLC @@ -5306,7 +5306,7 @@ module Chart2D = /// Sets the color of decreasing values /// Sets the style options of decreasing values (use this for more finegrained control than the other increasing-associated arguments). /// Sets the width of the open/close tick marks relative to the "x" minimal interval. - /// Wether or not to show a rangeslider for the xaxis + /// Whether or not to show a rangeslider for the xaxis /// If set to false, ignore the global default settings set in `Defaults` [] static member OHLC @@ -5372,7 +5372,7 @@ module Chart2D = /// Sets the color of decreasing values /// Sets the style options of decreasing values (use this for more finegrained control than the other increasing-associated arguments). /// Sets the width of the whiskers relative to the box' width. For example, with 1, the whiskers are as wide as the box(es). - /// Wether or not to show a rangeslider for the xaxis + /// Whether or not to show a rangeslider for the xaxis /// If set to false, ignore the global default settings set in `Defaults` static member Candlestick ( @@ -5459,7 +5459,7 @@ module Chart2D = /// Sets the color of decreasing values /// Sets the style options of decreasing values (use this for more finegrained control than the other increasing-associated arguments). /// Sets the width of the whiskers relative to the box' width. For example, with 1, the whiskers are as wide as the box(es). - /// Wether or not to show a rangeslider for the xaxis + /// Whether or not to show a rangeslider for the xaxis /// If set to false, ignore the global default settings set in `Defaults` [] static member Candlestick @@ -5522,7 +5522,7 @@ module Chart2D = /// Sets the color of decreasing values /// Sets the style options of decreasing values (use this for more finegrained control than the other increasing-associated arguments). /// Sets the width of the whiskers relative to the box' width. For example, with 1, the whiskers are as wide as the box(es). - /// Wether or not to show a rangeslider for the xaxis + /// Whether or not to show a rangeslider for the xaxis /// If set to false, ignore the global default settings set in `Defaults` [] static member Candlestick @@ -5584,7 +5584,7 @@ module Chart2D = /// Sets the symbol of all marker /// Sets the symbol of each individual marker /// Sets the markers (use this for more finegrained control than the other marker-associated arguments). - /// Wether or not to show the matrix diagional + /// Whether or not to show the matrix diagional /// Sets the styles applied to the scatter plot matrix diagonal /// Determines whether or not subplots on the lower half from the diagonal are displayed. /// Determines whether or not subplots on the upper half from the diagonal are displayed. @@ -5663,7 +5663,7 @@ module Chart2D = /// Sets the symbol of all marker /// Sets the symbol of each individual marker /// Sets the markers (use this for more finegrained control than the other marker-associated arguments). - /// Wether or not to show the matrix diagional + /// Whether or not to show the matrix diagional /// Sets the styles applied to the scatter plot matrix diagonal /// Determines whether or not subplots on the lower half from the diagonal are displayed. /// Determines whether or not subplots on the upper half from the diagonal are displayed. @@ -5729,15 +5729,15 @@ module Chart2D = /// Sets the color of the contour lines of the histogram2dcontour trace. /// Sets the smoothing of the contour lines of the histogram2dcontour trace. /// Sets the width of the contour lines of the histogram2dcontour trace. - /// Wether or not to show contour lines - /// Wether or not to show contour labels + /// Whether or not to show contour lines + /// Whether or not to show contour labels /// Determines the coloring method showing the contour values. If "fill", coloring is done evenly between each contour level If "heatmap", a heatmap gradient coloring is applied between each contour level. If "lines", coloring is done on the contour lines. If "none", no coloring is applied on this trace. /// Sets the maximum number of contour levels. The actual number of contours will be chosen automatically to be less than or equal to the value of `ncontours`. Has an effect only if `autocontour` is "true" or if `contours.size` is missing. /// Specifies the type of normalization used for this histogram trace. If "", the span of each bar corresponds to the number of occurrences (i.e. the number of data points lying inside the bins). If "percent" / "probability", the span of each bar corresponds to the percentage / fraction of occurrences with respect to the total number of sample points (here, the sum of all bin HEIGHTS equals 100% / 1). If "density", the span of each bar corresponds to the number of occurrences in a bin divided by the size of the bin interval (here, the sum of all bin AREAS equals the total number of sample points). If "probability density", the area of each bar corresponds to the probability that an event will fall into the corresponding bin (here, the sum of all bin AREAS equals 1). /// Sets the opacity of the histogram2dcontour trace. /// Sets the color bar. /// Sets the colorscale of the histogram2dcontour trace. - /// wether or not to show the colorbar + /// whether or not to show the colorbar /// If set to false, ignore the global default settings set in `Defaults` [] static member PointDensity diff --git a/src/Plotly.NET/ChartAPI/Chart3D.fs b/src/Plotly.NET/ChartAPI/Chart3D.fs index 1edd35071..35912ad10 100644 --- a/src/Plotly.NET/ChartAPI/Chart3D.fs +++ b/src/Plotly.NET/ChartAPI/Chart3D.fs @@ -404,7 +404,7 @@ module Chart3D = /// Sets the x coordinates of the plotted data. /// Sets the y coordinates of the plotted data. /// Sets the z coordinates of the plotted data. - /// Wether to show markers for the datums additionally to the line + /// Whether to show markers for the datums additionally to the line /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -505,7 +505,7 @@ module Chart3D = /// Line3D Plots plot three-dimensional data on 3 cartesian position scales in the X, Y, and Z dimension as a line connecting the individual datums. /// /// Sets the x, y, and z coordinates of the plotted data. - /// Wether to show markers for the datums additionally to the line + /// Whether to show markers for the datums additionally to the line /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -874,7 +874,7 @@ module Chart3D = /// Sets individual text for each datum /// Sets the contours on the surface /// Sets the colorscale of the surface - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the camera projection type of this trace. /// Sets the camera of this trace. /// If set to false, ignore the global default settings set in `Defaults` @@ -956,7 +956,7 @@ module Chart3D = /// Sets the color of the whole mesh /// Sets the style and visibility of contours /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Determines whether or not normal smoothing is applied to the meshes, creating meshes with an angular, low-poly look via flat reflections. /// Determines how the mesh surface triangles are derived from the set of vertices (points) represented by the `x`, `y` and `z` arrays, if the `i`, `j`, `k` arrays are not supplied. @@ -1052,7 +1052,7 @@ module Chart3D = /// Sets the color of the whole mesh /// Sets the style and visibility of contours /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Determines whether or not normal smoothing is applied to the meshes, creating meshes with an angular, low-poly look via flat reflections. /// Determines how the mesh surface triangles are derived from the set of vertices (points) represented by the `x`, `y` and `z` arrays, if the `i`, `j`, `k` arrays are not supplied. @@ -1132,7 +1132,7 @@ module Chart3D = /// Sets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Determines whether `sizeref` is set as a "scaled" (i.e unitless) scalar (normalized by the max u/v/w norm in the vector field) or as "absolute" value (in the same units as the vector field). /// Sets the cones' anchor with respect to their x/y/z positions. Note that "cm" denote the cone's center of mass which corresponds to 1/4 from the tail to tip. @@ -1218,7 +1218,7 @@ module Chart3D = /// Sets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Determines whether `sizeref` is set as a "scaled" (i.e unitless) scalar (normalized by the max u/v/w norm in the vector field) or as "absolute" value (in the same units as the vector field). /// Sets the cones' anchor with respect to their x/y/z positions. Note that "cm" denote the cone's center of mass which corresponds to 1/4 from the tail to tip. @@ -1288,7 +1288,7 @@ module Chart3D = /// Sets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Determines whether `sizeref` is set as a "scaled" (i.e unitless) scalar (normalized by the max u/v/w norm in the vector field) or as "absolute" value (in the same units as the vector field). /// Sets the cones' anchor with respect to their x/y/z positions. Note that "cm" denote the cone's center of mass which corresponds to 1/4 from the tail to tip. @@ -1370,7 +1370,7 @@ module Chart3D = /// Sets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// The maximum number of displayed segments in a streamtube. /// Use this object to specify custom tube start positions @@ -1458,7 +1458,7 @@ module Chart3D = /// Sets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// The maximum number of displayed segments in a streamtube. /// Use this object to specify custom tube start positions @@ -1534,7 +1534,7 @@ module Chart3D = /// Sets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// The maximum number of displayed segments in a streamtube. /// Use this object to specify custom tube start positions @@ -1610,7 +1610,7 @@ module Chart3D = /// Sets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Sets the minimum boundary for iso-surface plot. /// Sets the maximum boundary for iso-surface plot. @@ -1706,7 +1706,7 @@ module Chart3D = /// Sets a text associated with each datum /// Sets individual text for each datum /// Sets the colorscale - /// Wether or not to show the colorbar/colorscale + /// Whether or not to show the colorbar/colorscale /// Sets the colorbar /// Sets the minimum boundary for iso-surface plot. /// Sets the maximum boundary for iso-surface plot. diff --git a/src/Plotly.NET/ChartAPI/ChartCarpet.fs b/src/Plotly.NET/ChartAPI/ChartCarpet.fs index 87a6befea..692fa906a 100644 --- a/src/Plotly.NET/ChartAPI/ChartCarpet.fs +++ b/src/Plotly.NET/ChartAPI/ChartCarpet.fs @@ -104,7 +104,7 @@ module ChartCarpet = /// /// In general, ScatterCarpet creates a plot that uses the given carpet identifier as coordinate system. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// ScatterCarpet charts are the basis of PointCarpet, LineCarpet, and BubbleCarpet Charts, and can be customized as such. We also provide abstractions for those: Chart.LineCarpet, Chart.PointCarpet, Chart.BubbleCarpet /// @@ -210,7 +210,7 @@ module ChartCarpet = /// /// In general, ScatterCarpet creates a plot that uses the given carpet identifier as coordinate system. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// ScatterCarpet charts are the basis of PointCarpet, LineCarpet, and BubbleCarpet Charts, and can be customized as such. We also provide abstractions for those: Chart.LineCarpet, Chart.PointCarpet, Chart.BubbleCarpet /// @@ -300,7 +300,7 @@ module ChartCarpet = /// /// In general, PointCarpet creates a point plot that uses the given carpet identifier as coordinate system. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a-axis coordinates on the carpet. /// Sets the b-axis coordinates on the carpet. @@ -377,7 +377,7 @@ module ChartCarpet = /// /// In general, PointCarpet creates a point plot that uses the given carpet identifier as coordinate system. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a and b-axis coordinates on the carpet. /// The identifier of the carpet that this trace will lie on. @@ -446,12 +446,12 @@ module ChartCarpet = /// /// In general, LineCarpet creates a line plot that uses the given carpet identifier as coordinate system. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a-axis coordinates on the carpet. /// Sets the b-axis coordinates on the carpet. /// The identifier of the carpet that this trace will lie on. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -542,11 +542,11 @@ module ChartCarpet = /// /// In general, LineCarpet creates a line plot that uses the given carpet identifier as coordinate system. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a and b-axis coordinates on the carpet. /// The identifier of the carpet that this trace will lie on. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -630,12 +630,12 @@ module ChartCarpet = /// In general, SplineCarpet creates a spline plot that uses the given carpet identifier as coordinate system. /// A spline chart is a line chart in which data points are connected by smoothed curves. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a-axis coordinates on the carpet. /// Sets the b-axis coordinates on the carpet. /// The identifier of the carpet that this trace will lie on. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. @@ -749,11 +749,11 @@ module ChartCarpet = /// In general, SplineCarpet creates a spline plot that uses the given carpet identifier as coordinate system. /// A spline chart is a line chart in which data points are connected by smoothed curves. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a and b-axis coordinates on the carpet. /// The identifier of the carpet that this trace will lie on. - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. @@ -842,7 +842,7 @@ module ChartCarpet = /// /// A bubble chart is a variation of the Point chart, where the data points get an additional scale by being rendered as bubbles of different sizes. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a-axis coordinates on the carpet. /// Sets the b-axis coordinates on the carpet. @@ -951,7 +951,7 @@ module ChartCarpet = /// /// A bubble chart is a variation of the Point chart, where the data points get an additional scale by being rendered as bubbles of different sizes. /// - /// Wether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. + /// Whether the resulting plot is a cheater or true carpet plot depends on the referenced carpet. /// /// Sets the a and b-axis coordinates on the carpet and the associated bubble size. /// The identifier of the carpet that this trace will lie on. diff --git a/src/Plotly.NET/ChartAPI/ChartDomain.fs b/src/Plotly.NET/ChartAPI/ChartDomain.fs index 12c499dc9..d4a2635ab 100644 --- a/src/Plotly.NET/ChartAPI/ChartDomain.fs +++ b/src/Plotly.NET/ChartAPI/ChartDomain.fs @@ -209,7 +209,7 @@ module ChartDomain = /// /// Creates a doughnut chart. /// - /// A doughnut chart is a variation of the pie chart that has a fraction cut fron the center of the slices. + /// A doughnut chart is a variation of the pie chart that has a fraction cut from the center of the slices. /// /// Sets the values of the sectors /// Sets the trace name. The trace name appear as the legend item and on hover @@ -300,7 +300,7 @@ module ChartDomain = /// /// Creates a doughnut chart. /// - /// A doughnut chart is a variation of the pie chart that has a fraction cut fron the center of the slices. + /// A doughnut chart is a variation of the pie chart that has a fraction cut from the center of the slices. /// /// Sets the values and labels of the sectors. If label entries are duplicated, the associated values are summed. /// Sets the trace name. The trace name appear as the legend item and on hover @@ -563,8 +563,8 @@ module ChartDomain = /// Sets text elements associated with each (x,y) pair. If a single string, the same string appears over all the data points. If an array of string, the items are mapped in order to the this trace's (x,y) coordinates. If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. /// Sets the colors associated with each section. /// Sets the colorscale for the section values - /// Wether or not to show the section colorbar - /// Wether or not to show the section colorscale + /// Whether or not to show the section colorbar + /// Whether or not to show the section colorscale /// Sets the color of the section outline. /// Sets the width of the section outline. /// Sets the width of each individual section outline. @@ -573,8 +573,8 @@ module ChartDomain = /// Determines which trace information appear on the graph. /// Determines how the items in `values` are summed. When set to "total", items in `values` are taken to be value of all its descendants. When set to "remainder", items in `values` corresponding to the root and the branches sectors are taken to be the extra part not part of the sum of the values at their leaves. /// Determines default for `values` when it is not provided, by inferring a 1 for each of the "leaves" and/or "branches", otherwise 0. - /// Sets the styles fot the root of this trace. - /// Sets the styles fot the leaves of this trace. + /// Sets the styles for the root of this trace. + /// Sets the styles for the leaves of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// Rotates the whole diagram counterclockwise by some angle. By default the first slice starts at 3 o'clock. @@ -682,8 +682,8 @@ module ChartDomain = /// Sets text elements associated with each (x,y) pair. If a single string, the same string appears over all the data points. If an array of string, the items are mapped in order to the this trace's (x,y) coordinates. If trace `hoverinfo` contains a "text" flag and "hovertext" is not set, these elements will be seen in the hover labels. /// Sets the colors associated with each section. /// Sets the colorscale for the section values - /// Wether or not to show the section colorbar - /// Wether or not to show the section colorscale + /// Whether or not to show the section colorbar + /// Whether or not to show the section colorscale /// Sets the color of the section outline. /// Sets the width of the section outline. /// Sets the width of each individual section outline. @@ -692,8 +692,8 @@ module ChartDomain = /// Determines which trace information appear on the graph. /// Determines how the items in `values` are summed. When set to "total", items in `values` are taken to be value of all its descendants. When set to "remainder", items in `values` corresponding to the root and the branches sectors are taken to be the extra part not part of the sum of the values at their leaves. /// Determines default for `values` when it is not provided, by inferring a 1 for each of the "leaves" and/or "branches", otherwise 0. - /// Sets the styles fot the root of this trace. - /// Sets the styles fot the leaves of this trace. + /// Sets the styles for the root of this trace. + /// Sets the styles for the leaves of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// Rotates the whole diagram counterclockwise by some angle. By default the first slice starts at 3 o'clock. @@ -789,8 +789,8 @@ module ChartDomain = /// Sets the positions of the `text` elements with respects to the (x,y) coordinates. /// Sets the colors associated with each section. /// Sets the colorscale for the section values - /// Wether or not to show the section colorbar - /// Wether or not to show the section colorscale + /// Whether or not to show the section colorbar + /// Whether or not to show the section colorscale /// Sets the color of the section outline. /// Sets the width of the section outline. /// Sets the width of each individual section outline. @@ -801,7 +801,7 @@ module ChartDomain = /// Determines default for `values` when it is not provided, by inferring a 1 for each of the "leaves" and/or "branches", otherwise 0. /// Sets the tiling for this trace. /// Sets the path bar for this trace. - /// Sets the styles fot the root of this trace. + /// Sets the styles for the root of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// If set to false, ignore the global default settings set in `Defaults` @@ -910,8 +910,8 @@ module ChartDomain = /// Sets the positions of the `text` elements with respects to the (x,y) coordinates. /// Sets the colors associated with each section. /// Sets the colorscale for the section values - /// Wether or not to show the section colorbar - /// Wether or not to show the section colorscale + /// Whether or not to show the section colorbar + /// Whether or not to show the section colorscale /// Sets the color of the section outline. /// Sets the width of the section outline. /// Sets the width of each individual section outline. @@ -922,7 +922,7 @@ module ChartDomain = /// Determines default for `values` when it is not provided, by inferring a 1 for each of the "leaves" and/or "branches", otherwise 0. /// Sets the tiling for this trace. /// Sets the path bar for this trace. - /// Sets the styles fot the root of this trace. + /// Sets the styles for the root of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// If set to false, ignore the global default settings set in `Defaults` @@ -1010,8 +1010,8 @@ module ChartDomain = /// Sets the trace name. The trace name appear as the legend item and on hover /// Sets the color of the lines that are connecting the datums on the dimensions /// Sets the colorscale of the lines that are connecting the datums on the dimensions - /// Wether or not to show the colorbar of the lines that are connecting the datums on the dimensions - /// Wether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions + /// Whether or not to show the colorbar of the lines that are connecting the datums on the dimensions + /// Whether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions /// Sets the lines that are connecting the datums on the dimensions (use this for more finegrained control than the other line-associated arguments). /// Sets the angle of the labels with respect to the horizontal. For example, a `tickangle` of -90 draws the labels vertically. Tilted labels with "labelangle" may be positioned better inside margins when `labelposition` is set to "bottom". /// Sets the label font of this trace. @@ -1076,8 +1076,8 @@ module ChartDomain = /// Sets the trace name. The trace name appear as the legend item and on hover /// Sets the color of the lines that are connecting the datums on the dimensions /// Sets the colorscale of the lines that are connecting the datums on the dimensions - /// Wether or not to show the colorbar of the lines that are connecting the datums on the dimensions - /// Wether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions + /// Whether or not to show the colorbar of the lines that are connecting the datums on the dimensions + /// Whether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions /// Sets the lines that are connecting the datums on the dimensions (use this for more finegrained control than the other line-associated arguments). /// Sets the angle of the labels with respect to the horizontal. For example, a `tickangle` of -90 draws the labels vertically. Tilted labels with "labelangle" may be positioned better inside margins when `labelposition` is set to "bottom". /// Sets the label font of this trace. @@ -1136,8 +1136,8 @@ module ChartDomain = /// Sets the color of the lines that are connecting the datums on the dimensions /// Sets the shape of the lines that are connecting the datums on the dimensions /// Sets the colorscale of the lines that are connecting the datums on the dimensions - /// Wether or not to show the colorbar of the lines that are connecting the datums on the dimensions - /// Wether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions + /// Whether or not to show the colorbar of the lines that are connecting the datums on the dimensions + /// Whether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions /// Sets the lines that are connecting the datums on the dimensions (use this for more finegrained control than the other line-associated arguments). /// Sets the drag interaction mode for categories and dimensions. If `perpendicular`, the categories can only move along a line perpendicular to the paths. If `freeform`, the categories can freely move on the plane. If `fixed`, the categories and dimensions are stationary. /// Sort paths so that like colors are bundled together within each category. @@ -1209,8 +1209,8 @@ module ChartDomain = /// Sets the color of the lines that are connecting the datums on the dimensions /// Sets the shape of the lines that are connecting the datums on the dimensions /// Sets the colorscale of the lines that are connecting the datums on the dimensions - /// Wether or not to show the colorbar of the lines that are connecting the datums on the dimensions - /// Wether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions + /// Whether or not to show the colorbar of the lines that are connecting the datums on the dimensions + /// Whether or not to reverse the colorscale of the lines that are connecting the datums on the dimensions /// Sets the lines that are connecting the datums on the dimensions (use this for more finegrained control than the other line-associated arguments). /// Sets the drag interaction mode for categories and dimensions. If `perpendicular`, the categories can only move along a line perpendicular to the paths. If `freeform`, the categories can freely move on the plane. If `fixed`, the categories and dimensions are stationary. /// Sort paths so that like colors are bundled together within each category. @@ -1468,7 +1468,7 @@ module ChartDomain = /// /// Sets the values contained in the table header. /// Sets the values contained in the table cells. - /// Wether or not to transpose the cells (i.e. switch from row to column major) + /// Whether or not to transpose the cells (i.e. switch from row to column major) /// Sets the alignment of the table header. /// Sets the alignment of the individual cells in the table header. /// Sets the fill color of the table header. @@ -1605,7 +1605,7 @@ module ChartDomain = /// Sets the styles of the displayed number /// Sets the shape of the gauge /// Sets the styles of the gauge - /// Wether or not to show the gauge axis + /// Whether or not to show the gauge axis /// Sets the gauge axis /// [] @@ -1680,8 +1680,8 @@ module ChartDomain = /// Sets the positions of the `text` elements with respects to the (x,y) coordinates. /// Sets the colors associated with each section. /// Sets the colorscale for the section values - /// Wether or not to show the section colorbar - /// Wether or not to show the section colorscale + /// Whether or not to show the section colorbar + /// Whether or not to show the section colorscale /// Sets the color of the section outline. /// Sets the width of the section outline. /// Sets the width of each individual section outline. @@ -1695,7 +1695,7 @@ module ChartDomain = /// Sets the edge shape of the pathbar. /// Sets the pathbar /// Determines which trace information appear on the graph. - /// Sets the styles fot the root of this trace. + /// Sets the styles for the root of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// If set to false, ignore the global default settings set in `Defaults` @@ -1812,8 +1812,8 @@ module ChartDomain = /// Sets the positions of the `text` elements with respects to the (x,y) coordinates. /// Sets the colors associated with each section. /// Sets the colorscale for the section values - /// Wether or not to show the section colorbar - /// Wether or not to show the section colorscale + /// Whether or not to show the section colorbar + /// Whether or not to show the section colorscale /// Sets the color of the section outline. /// Sets the width of the section outline. /// Sets the width of each individual section outline. @@ -1827,7 +1827,7 @@ module ChartDomain = /// Sets the edge shape of the pathbar. /// Sets the pathbar /// Determines which trace information appear on the graph. - /// Sets the styles fot the root of this trace. + /// Sets the styles for the root of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// If set to false, ignore the global default settings set in `Defaults` diff --git a/src/Plotly.NET/ChartAPI/ChartMap.fs b/src/Plotly.NET/ChartAPI/ChartMap.fs index b172d942d..0728ed7c8 100644 --- a/src/Plotly.NET/ChartAPI/ChartMap.fs +++ b/src/Plotly.NET/ChartAPI/ChartMap.fs @@ -1184,7 +1184,7 @@ module ChartMap = /// sets the drawing style of the line /// Sets the line (use this for more finegrained control than the other line-associated arguments) /// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''". - /// Wether or not to enable clustering for points + /// Whether or not to enable clustering for points /// Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments) /// If set to false, ignore the global default settings set in `Defaults` [] @@ -1309,7 +1309,7 @@ module ChartMap = /// sets the drawing style of the line /// Sets the line (use this for more finegrained control than the other line-associated arguments) /// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''". - /// Wether or not to enable clustering for points + /// Whether or not to enable clustering for points /// Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments) /// If set to false, ignore the global default settings set in `Defaults` [] @@ -1400,7 +1400,7 @@ module ChartMap = /// Sets the marker symbol for each individual datum /// Sets the marker (use this for more finegrained control than the other marker-associated arguments) /// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''". - /// Wether or not to enable clustering for points + /// Whether or not to enable clustering for points /// Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments) /// If set to false, ignore the global default settings set in `Defaults` [] @@ -1482,7 +1482,7 @@ module ChartMap = /// Sets the marker symbol for each individual datum /// Sets the marker (use this for more finegrained control than the other marker-associated arguments) /// Determines if this scattermapbox trace's layers are to be inserted before the layer with the specified ID. By default, scattermapbox layers are inserted above all the base layers. To place the scattermapbox layers above every other layer, set `below` to "''". - /// Wether or not to enable clustering for points + /// Whether or not to enable clustering for points /// Sets the clustering options (use this for more finegrained control than the other cluster-associated arguments) /// If set to false, ignore the global default settings set in `Defaults` [] diff --git a/src/Plotly.NET/ChartAPI/ChartPolar.fs b/src/Plotly.NET/ChartAPI/ChartPolar.fs index fce5e88f6..284d72671 100644 --- a/src/Plotly.NET/ChartAPI/ChartPolar.fs +++ b/src/Plotly.NET/ChartAPI/ChartPolar.fs @@ -378,7 +378,7 @@ module ChartPolar = /// /// Sets the radial coordinates of the plotted data /// Sets the angular coordinates of the plotted data - /// Wether to show markers for the datums additionally to the line + /// Whether to show markers for the datums additionally to the line /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -489,7 +489,7 @@ module ChartPolar = /// LinePolar plots plot two-dimensional data on a polar coordinate system comprised of angular and radial position scales connected via a line. /// /// Sets the radial and angular coordinates of the plotted data - /// Wether to show markers for the datums additionally to the line + /// Whether to show markers for the datums additionally to the line /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -576,7 +576,7 @@ module ChartPolar = /// /// Sets the radial coordinates of the plotted data /// Sets the angular coordinates of the plotted data - /// Wether to show markers for the datums additionally to the line + /// Whether to show markers for the datums additionally to the line /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. @@ -691,7 +691,7 @@ module ChartPolar = /// LinePolar plots plot two-dimensional data on a polar coordinate system comprised of angular and radial position scales connected via a smoothed line. /// /// Sets the radial and angular coordinates of the plotted data - /// Wether to show markers for the datums additionally to the line + /// Whether to show markers for the datums additionally to the line /// Sets the amount of smoothing. "0" corresponds to no smoothing (equivalent to a "linear" shape). Use values between 0. and 1.3 /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. diff --git a/src/Plotly.NET/ChartAPI/ChartSmith.fs b/src/Plotly.NET/ChartAPI/ChartSmith.fs index a735d5a76..56272e27a 100644 --- a/src/Plotly.NET/ChartAPI/ChartSmith.fs +++ b/src/Plotly.NET/ChartAPI/ChartSmith.fs @@ -352,7 +352,7 @@ module ChartSmith = /// /// Sets the real component of the data, in units of normalized impedance such that real=1, imag=0 is the center of the chart. /// Sets the imaginary component of the data, in units of normalized impedance such that real=1, imag=0 is the center of the chart. - /// Wether or not to show markers for each datum. + /// Whether or not to show markers for each datum. /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -448,7 +448,7 @@ module ChartSmith = /// In general, LineSmith charts plot complex numbers on a transformed two-dimensional Cartesian complex plane as datums connected by a line. Complex numbers with positive real parts map inside the circle. Those with negative real parts map outside the circle. /// /// Sets the real and imaginary components of the data, in units of normalized impedance such that real=1, imag=0 is the center of the chart. - /// Wether or not to show markers for each datum. + /// Whether or not to show markers for each datum. /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace diff --git a/src/Plotly.NET/ChartAPI/ChartTernary.fs b/src/Plotly.NET/ChartAPI/ChartTernary.fs index 144e047a7..ca342238e 100644 --- a/src/Plotly.NET/ChartAPI/ChartTernary.fs +++ b/src/Plotly.NET/ChartAPI/ChartTernary.fs @@ -355,7 +355,7 @@ module ChartTernary = /// Sets the quantity of component `b` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`. /// Sets the quantity of component `c` in each data point. If `a`, `b`, and `c` are all provided, they need not be normalized, only the relative values matter. If only two arrays are provided they must be normalized to match `ternary<i>.sum`. /// The number each triplet should sum to, if only two of `a`, `b`, and `c` are provided. This overrides `ternary<i>.sum` to normalize this specific trace, but does not affect the values displayed on the axes. 0 (or missing) means to use `ternary<i>.sum` - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace @@ -449,7 +449,7 @@ module ChartTernary = /// In general, LineTernary creates a barycentric line plot on three variables which sum to a constant, graphically depicting the ratios of the three variables as positions in an equilateral triangle. /// /// Sets the quantities of the a, b, and c components - /// Wether to show markers for the individual data points + /// Whether to show markers for the individual data points /// Sets the trace name. The trace name appear as the legend item and on hover /// Determines whether or not an item corresponding to this trace is shown in the legend. /// Sets the opactity of the trace diff --git a/src/Plotly.NET/CommonAbstractions/Line.fs b/src/Plotly.NET/CommonAbstractions/Line.fs index 82bdb695f..f9991a2d8 100644 --- a/src/Plotly.NET/CommonAbstractions/Line.fs +++ b/src/Plotly.NET/CommonAbstractions/Line.fs @@ -21,7 +21,7 @@ type Line() = /// Sets a reference to a shared color axis. References to these shared color axes are "coloraxis", "coloraxis2", "coloraxis3", etc. Settings for these shared color axes are set in the layout, under `layout.coloraxis`, `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. /// Sets the line colorscale /// Reverses the color mapping if true. - /// Wether or not to show the color bar + /// Whether or not to show the color bar /// Sets the colorbar. /// Sets the dash style of lines. Set to a dash type string ("solid", "dot", "dash", "longdash", "dashdot", or "longdashdot") or a dash length list in px (eg "5px,10px,2px,2px"). /// Determines the line shape. With "spline" the lines are drawn using spline interpolation. The other available values correspond to step-wise line shapes. @@ -91,7 +91,7 @@ type Line() = /// Sets a reference to a shared color axis. References to these shared color axes are "coloraxis", "coloraxis2", "coloraxis3", etc. Settings for these shared color axes are set in the layout, under `layout.coloraxis`, `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. /// Sets the line colorscale /// Reverses the color mapping if true. - /// Wether or not to show the color bar + /// Whether or not to show the color bar /// Sets the colorbar. /// Sets the dash style of lines. Set to a dash type string ("solid", "dot", "dash", "longdash", "dashdot", or "longdashdot") or a dash length list in px (eg "5px,10px,2px,2px"). /// Determines the line shape. With "spline" the lines are drawn using spline interpolation. The other available values correspond to step-wise line shapes. diff --git a/src/Plotly.NET/CommonAbstractions/StyleParams.fs b/src/Plotly.NET/CommonAbstractions/StyleParams.fs index 652c05cf1..c137294c4 100644 --- a/src/Plotly.NET/CommonAbstractions/StyleParams.fs +++ b/src/Plotly.NET/CommonAbstractions/StyleParams.fs @@ -969,7 +969,7 @@ module StyleParam = member this.Convert() = this |> DoubleClick.convert - /// Sets this figure's behavior when a user preforms a mouse 'drag' in the plot area. When set to 'zoom', a portion of the plot will be highlighted, + /// Sets this figure's behavior when a user performs a mouse 'drag' in the plot area. When set to 'zoom', a portion of the plot will be highlighted, /// when the viewer exits the drag, this highlighted section will be zoomed in on. When set to 'pan', data in the plot will move along with the viewers /// dragging motions. A user can always depress the 'shift' key to access the whatever functionality has not been set as the default. In 3D plots, the /// default drag mode is 'rotate' which rotates the scene. @@ -1782,7 +1782,7 @@ module StyleParam = member this.Convert() = this |> LocationFormat.convert - /// Determines wether the rows of a LayoutGrid are enumerated from the top or the bottom. + /// Determines whether the rows of a LayoutGrid are enumerated from the top or the bottom. [] type LayoutGridRowOrder = | TopToBottom @@ -3264,7 +3264,7 @@ module StyleParam = override this.ToString() = this |> TextPosition.toString member this.Convert() = this |> TextPosition.convert - /// Determines which trace information appear on the graph and on hove (HoverInfo) + /// Determines which trace information appear on the graph and on hover (HoverInfo) //Any combination of "label", "text", "value", "percent" joined with a "+" OR "none". //examples: "label", "text", "label+text", "label+text+value", "none" [] diff --git a/src/Plotly.NET/Layout/Layout.fs b/src/Plotly.NET/Layout/Layout.fs index 088a7ceb3..6b1a5a31e 100644 --- a/src/Plotly.NET/Layout/Layout.fs +++ b/src/Plotly.NET/Layout/Layout.fs @@ -544,7 +544,7 @@ type Layout() = ) /// - /// Returns Some(dynamic member value) of the trace object's underlying DynamicObj when a dynamic member eith the given name exists, and None otherwise. + /// Returns Some(dynamic member value) of the trace object's underlying DynamicObj when a dynamic member with the given name exists, and None otherwise. /// /// The name of the dynamic member to get the value of /// The layout to get the dynamic member value from diff --git a/src/Plotly.NET/Layout/ObjectAbstractions/3D/Scene.fs b/src/Plotly.NET/Layout/ObjectAbstractions/3D/Scene.fs index 6aee4a535..4b419598a 100644 --- a/src/Plotly.NET/Layout/ObjectAbstractions/3D/Scene.fs +++ b/src/Plotly.NET/Layout/ObjectAbstractions/3D/Scene.fs @@ -104,7 +104,7 @@ type Scene() = scene) /// - /// Returns Some(dynamic member value) of the scene object's underlying DynamicObj when a dynamic member eith the given name exists, and None otherwise. + /// Returns Some(dynamic member value) of the scene object's underlying DynamicObj when a dynamic member with the given name exists, and None otherwise. /// /// The name of the dynamic member to get the value of /// The scene to get the dynamic member value from diff --git a/src/Plotly.NET/Layout/ObjectAbstractions/Map/Geo.fs b/src/Plotly.NET/Layout/ObjectAbstractions/Map/Geo.fs index d290a2f11..61bd3fe87 100644 --- a/src/Plotly.NET/Layout/ObjectAbstractions/Map/Geo.fs +++ b/src/Plotly.NET/Layout/ObjectAbstractions/Map/Geo.fs @@ -16,7 +16,7 @@ type Geo() = /// Set the scope of the map. /// Determines the type of projection used to display the map /// Sets the (lon,lat) coordinates of the map's center. By default, the map's longitude center lies at the middle of the longitude range for scoped projection and above `projection.rotation.lon` otherwise. For all projection types, the map's latitude center lies at the middle of the latitude range by default. - /// Wether or not the base layers are visible + /// Whether or not the base layers are visible /// The domain of this geo subplot /// Sets whether or not the coastlines are drawn. /// Sets the coastline color. @@ -117,7 +117,7 @@ type Geo() = /// Set the scope of the map. /// Determines the type of projection used to display the map /// Sets the (lon,lat) coordinates of the map's center. By default, the map's longitude center lies at the middle of the longitude range for scoped projection and above `projection.rotation.lon` otherwise. For all projection types, the map's latitude center lies at the middle of the latitude range by default. - /// Wether or not the base layers are visible + /// Whether or not the base layers are visible /// The domain of this geo subplot /// Sets whether or not the coastlines are drawn. /// Sets the coastline color. diff --git a/src/Plotly.NET/Layout/ObjectAbstractions/Polar/Polar.fs b/src/Plotly.NET/Layout/ObjectAbstractions/Polar/Polar.fs index 204aeb199..af2793048 100644 --- a/src/Plotly.NET/Layout/ObjectAbstractions/Polar/Polar.fs +++ b/src/Plotly.NET/Layout/ObjectAbstractions/Polar/Polar.fs @@ -85,7 +85,7 @@ type Polar() = polar) /// - /// Returns Some(dynamic member value) of the object's underlying DynamicObj when a dynamic member eith the given name exists, and None otherwise. + /// Returns Some(dynamic member value) of the object's underlying DynamicObj when a dynamic member with the given name exists, and None otherwise. /// /// The name of the dynamic member to get the value of /// The object to get the dynamic member value from diff --git a/src/Plotly.NET/Layout/ObjectAbstractions/Smith/Smith.fs b/src/Plotly.NET/Layout/ObjectAbstractions/Smith/Smith.fs index f9a469d38..68d1effdf 100644 --- a/src/Plotly.NET/Layout/ObjectAbstractions/Smith/Smith.fs +++ b/src/Plotly.NET/Layout/ObjectAbstractions/Smith/Smith.fs @@ -56,7 +56,7 @@ type Smith() = smith /// - /// Returns Some(dynamic member value) of the object's underlying DynamicObj when a dynamic member eith the given name exists, and None otherwise. + /// Returns Some(dynamic member value) of the object's underlying DynamicObj when a dynamic member with the given name exists, and None otherwise. /// /// The name of the dynamic member to get the value of /// The object to get the dynamic member value from diff --git a/src/Plotly.NET/Layout/ObjectAbstractions/Ternary/Ternary.fs b/src/Plotly.NET/Layout/ObjectAbstractions/Ternary/Ternary.fs index 12c57d9d1..a682a02ba 100644 --- a/src/Plotly.NET/Layout/ObjectAbstractions/Ternary/Ternary.fs +++ b/src/Plotly.NET/Layout/ObjectAbstractions/Ternary/Ternary.fs @@ -67,7 +67,7 @@ type Ternary() = /// - /// Returns Some(dynamic member value) of the object's underlying DynamicObj when a dynamic member eith the given name exists, and None otherwise. + /// Returns Some(dynamic member value) of the object's underlying DynamicObj when a dynamic member with the given name exists, and None otherwise. /// /// The name of the dynamic member to get the value of /// The object to get the dynamic member value from diff --git a/src/Plotly.NET/Traces/ObjectAbstractions/FunnelConnector.fs b/src/Plotly.NET/Traces/ObjectAbstractions/FunnelConnector.fs index d843b8f9b..f8201e470 100644 --- a/src/Plotly.NET/Traces/ObjectAbstractions/FunnelConnector.fs +++ b/src/Plotly.NET/Traces/ObjectAbstractions/FunnelConnector.fs @@ -12,7 +12,7 @@ open System.Runtime.InteropServices /// /// Line : Sets the Line style for this WaterfallConnector /// -/// Visible : Wether or not connectors are visible +/// Visible : Whether or not connectors are visible /// /// ConnectorMode : Sets the shape of connector lines. type FunnelConnector() = diff --git a/src/Plotly.NET/Traces/ObjectAbstractions/WaterfallConnector.fs b/src/Plotly.NET/Traces/ObjectAbstractions/WaterfallConnector.fs index d35c1933a..20c4be680 100644 --- a/src/Plotly.NET/Traces/ObjectAbstractions/WaterfallConnector.fs +++ b/src/Plotly.NET/Traces/ObjectAbstractions/WaterfallConnector.fs @@ -12,7 +12,7 @@ open System.Runtime.InteropServices /// /// Line : Sets the Line style for this WaterfallConnector /// -/// Visible : Wether or not connectors are visible +/// Visible : Whether or not connectors are visible /// /// ConnectorMode : Sets the shape of connector lines. type WaterfallConnector() = diff --git a/src/Plotly.NET/Traces/Trace.fs b/src/Plotly.NET/Traces/Trace.fs index cf84eb6b0..850d01886 100644 --- a/src/Plotly.NET/Traces/Trace.fs +++ b/src/Plotly.NET/Traces/Trace.fs @@ -18,7 +18,7 @@ type Trace(traceTypeName: string) = member val ``type`` = traceTypeName with get, set /// - /// Returns Some(dynamic member value) of the trace object's underlying DynamicObj when a dynamic member eith the given name exists, and None otherwise. + /// Returns Some(dynamic member value) of the trace object's underlying DynamicObj when a dynamic member with the given name exists, and None otherwise. /// /// The name of the dynamic member to get the value of /// The trace to get the dynamic member value from @@ -286,7 +286,7 @@ type TraceStyle() = /// Sets trace information on the given trace. /// /// Sets the name of the chart's trace(s). When the chart is a multichart (it contains multiple traces), the name is suffixed by '_%i' where %i is the index of the trace. - /// Wether or not the chart's traces are visible + /// Whether or not the chart's traces are visible /// Determines whether or not item(s) corresponding to this chart's trace(s) is/are shown in the legend. /// Sets the legend rank for the chart's trace(s). Items and groups with smaller ranks are presented on top/left side while with `"reversed" `legend.traceorder` they are on bottom/right side. The default legendrank is 1000, so that you can use ranks less than 1000 to place certain items before all unranked items, and ranks greater than 1000 to go after all unranked items. /// Sets the legend group for the chart's trace(s). Traces part of the same legend group hide/show at the same time when toggling legend items. @@ -441,7 +441,7 @@ type TraceStyle() = /// Sets a reference to a shared color axis. References to these shared color axes are "coloraxis", "coloraxis2", "coloraxis3", etc. Settings for these shared color axes are set in the layout, under `layout.coloraxis`, `layout.coloraxis2`, etc. Note that multiple color scales can be linked to the same color axis. /// Sets the line colorscale /// Reverses the color mapping if true. - /// Wether or not to show the color bar + /// Whether or not to show the color bar /// Sets the colorbar. /// Sets the dash style of lines. Set to a dash type string ("solid", "dot", "dash", "longdash", "dashdot", or "longdashdot") or a dash length list in px (eg "5px,10px,2px,2px"). /// Determines the line shape. With "spline" the lines are drawn using spline interpolation. The other available values correspond to step-wise line shapes. diff --git a/src/Plotly.NET/Traces/Trace2D.fs b/src/Plotly.NET/Traces/Trace2D.fs index 67bdc7532..9a38dd446 100644 --- a/src/Plotly.NET/Traces/Trace2D.fs +++ b/src/Plotly.NET/Traces/Trace2D.fs @@ -937,7 +937,7 @@ type Trace2DStyle() = /// Sets the style of unselected points of this trace. /// Determines whether the text nodes are clipped about the subplot axes. To show the text nodes above axis lines and tick labels, make sure to set `xaxis.layer` and `yaxis.layer` to "below traces". /// Constrain the size of text inside or outside a bar to be no larger than the bar itself. - /// Sets wether and how the cumulative distribution is displayed + /// Sets whether and how the cumulative distribution is displayed /// Sets the style of the hoverlabels of this trace. /// Determines if texts are kept at center or start/end points in `textposition` "inside" mode. /// Sets the font used for `text` lying inside the bar. @@ -1309,7 +1309,7 @@ type Trace2DStyle() = /// Set several traces linked to the same position axis or matching axes to the same offsetgroup where bars of the same position coordinate will line up. /// Sets the Marker of this trace. /// Sets the line of this trace. - /// Wether and how to draw a miniature box plot + /// Whether and how to draw a miniature box plot /// Array containing integer indices of selected points. Has an effect only for traces that support selections. Note that an empty array means an empty selection where the `unselected` are turned on for all points, whereas, any other non-array values means no selection all where the `selected` and `unselected` styles have no effect. /// Sets the style of selected points of this trace. /// Sets the style of unselected points of this trace. @@ -1319,7 +1319,7 @@ type Trace2DStyle() = /// Do the hover effects highlight individual boxes or sample points or both? /// Sets the position of the sample points in relation to the box(es). If "0", the sample points are places over the center of the box(es). Positive (negative) values correspond to positions to the right (left) for vertical boxes and above (below) for horizontal boxes /// Sets the amount of jitter in the sample points drawn. If "0", the sample points align along the distribution axis. If "1", the sample points are drawn in a random jitter of width equal to the width of the box(es). - /// Wether and how to draw the meanline + /// Whether and how to draw the meanline /// If "outliers", only the sample points lying outside the whiskers are shown If "suspectedoutliers", the outlier points are shown and points either less than 4"Q1-3"Q3 or greater than 4"Q3-3"Q1 are highlighted (see `outliercolor`) If "all", all sample points are shown If "false", only the violins are shown with no sample points. Defaults to "suspectedoutliers" when `marker.outliercolor` or `marker.line.outliercolor` is set, otherwise defaults to "outliers". /// If there are multiple violins that should be sized according to to some metric (see `scalemode`), link them by providing a non-empty group id here shared by every trace in the same group. If a violin's `width` is undefined, `scalegroup` will default to the trace's name. In this case, violins with the same names will be linked together /// Sets the metric by which the width of each violin is determined."width" means each violin has the same (max) width"count" means the violins are scaled by the number of sample points makingup each violin. diff --git a/src/Plotly.NET/Traces/TraceDomain.fs b/src/Plotly.NET/Traces/TraceDomain.fs index 97caa2259..5d1468582 100644 --- a/src/Plotly.NET/Traces/TraceDomain.fs +++ b/src/Plotly.NET/Traces/TraceDomain.fs @@ -342,8 +342,8 @@ type TraceDomainStyle() = /// Sets the font used for `textinfo` lying inside the sector. /// Controls the orientation of the text inside chart sectors. When set to "auto", text may be oriented in any direction in order to be as big as possible in the middle of a sector. The "horizontal" option orients text to be parallel with the bottom of the chart, and may make text smaller in order to achieve that goal. The "radial" option orients text along the radius of the sector. The "tangential" option orients text perpendicular to the radius of the sector. /// Sets the font used for `textinfo` lying outside the sector. - /// Sets the styles fot the root of this trace. - /// Sets the styles fot the leaves of this trace. + /// Sets the styles for the root of this trace. + /// Sets the styles for the leaves of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// Rotates the whole diagram counterclockwise by some angle. By default the first slice starts at 3 o'clock. @@ -475,7 +475,7 @@ type TraceDomainStyle() = /// Sets the style of the hoverlabels of this trace. /// Sets the font used for `textinfo` lying inside the sector. /// Sets the font used for `textinfo` lying outside the sector. - /// Sets the styles fot the root of this trace. + /// Sets the styles for the root of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// Controls persistence of some user-driven changes to the trace: `constraintrange` in `parcoords` traces, as well as some `editable: true` modifications such as `name` and `colorbar.title`. Defaults to `layout.uirevision`. Note that other user-driven trace attribute changes are controlled by `layout` attributes: `trace.visible` is controlled by `layout.legend.uirevision`, `selectedpoints` is controlled by `layout.selectionrevision`, and `colorbar.(x|y)` (accessible with `config: {editable: true}`) is controlled by `layout.editrevision`. Trace changes are tracked by `uid`, which only falls back on trace index if no `uid` is provided. So if your app can add/remove traces before the end of the `data` array, such that the same trace has a different index, you can still preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. @@ -841,9 +841,9 @@ type TraceDomainStyle() = /// Assigns extra data each datum. This may be useful when listening to hover, click and selection events. Note that, "scatter" traces also appends customdata items in the markers DOM elements /// Sets the domain of this trace. /// Sets the horizontal alignment of the `text` within the box. Note that this attribute has no effect if an angular gauge is displayed: in this case, it is always centered - /// Sets the styling options for delta diplay. - /// Sets the styling options for number diplay. - /// Sets the styling options for gauge diplay. + /// Sets the styling options for delta display. + /// Sets the styling options for number display. + /// Sets the styling options for gauge display. /// Controls persistence of some user-driven changes to the trace: `constraintrange` in `parcoords` traces, as well as some `editable: true` modifications such as `name` and `colorbar.title`. Defaults to `layout.uirevision`. Note that other user-driven trace attribute changes are controlled by `layout` attributes: `trace.visible` is controlled by `layout.legend.uirevision`, `selectedpoints` is controlled by `layout.selectionrevision`, and `colorbar.(x|y)` (accessible with `config: {editable: true}`) is controlled by `layout.editrevision`. Trace changes are tracked by `uid`, which only falls back on trace index if no `uid` is provided. So if your app can add/remove traces before the end of the `data` array, such that the same trace has a different index, you can still preserve user-driven changes if you give each trace a `uid` that stays with it as it moves. static member Indicator ( @@ -921,8 +921,8 @@ type TraceDomainStyle() = /// Sets the style of the hoverlabels of this trace. /// Sets the font used for `textinfo` lying inside the sector. /// Sets the font used for `textinfo` lying outside the sector. - /// Sets the styles fot the root of this trace. - /// Sets the leaves fot the root of this trace. + /// Sets the styles for the root of this trace. + /// Sets the leaves for the root of this trace. /// Sets the level from which this trace hierarchy is rendered. Set `level` to `''` to start from the root node in the hierarchy. Must be an "id" if `ids` is filled in, otherwise plotly attempts to find a matching item in `labels`. /// Sets the number of rendered sectors from any given `level`. Set `maxdepth` to "-1" to render all the levels in the hierarchy. /// Determines whether or not the sectors are reordered from largest to smallest.