From 0b280879b7c2bcfe04ee746c26b78e10bb2328c5 Mon Sep 17 00:00:00 2001 From: Sean McLeish Date: Wed, 22 Nov 2023 13:09:40 +0100 Subject: [PATCH 1/7] Fix comment in EventDataPoint --- Plotly.Blazor/Interop/EventDataPoint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plotly.Blazor/Interop/EventDataPoint.cs b/Plotly.Blazor/Interop/EventDataPoint.cs index a82dab98..edc401ca 100644 --- a/Plotly.Blazor/Interop/EventDataPoint.cs +++ b/Plotly.Blazor/Interop/EventDataPoint.cs @@ -63,7 +63,7 @@ public class EventDataPoint public class LegendEventDataPoint { /// - // The zero-based point number. Can be used to identify the trace. + /// The zero-based point number. Can be used to identify the trace. /// public object CurveNumber { get; set; } From 9b8e3ca88c4b6c834e1c12a2565ba14b513da501 Mon Sep 17 00:00:00 2001 From: Sean McLeish Date: Wed, 22 Nov 2023 14:01:07 +0100 Subject: [PATCH 2/7] Fix polar examples --- .../Components/AreaPolarChart.razor | 7 ----- .../Components/BarChart.razor | 1 + .../Components/CategoricalPolarChart.razor | 7 ----- .../Components/LinePolarPlot.razor | 7 ----- .../PolarChartDirectionsChart.razor | 7 ----- .../Components/PolarChartSector.razor | 7 ----- .../Pages/Polar/AreaPolarPage.razor | 5 ++++ .../Pages/Polar/CategoricalPolarPage.razor | 5 ++++ .../Pages/Polar/DirectionPolarPage.razor | 5 ++++ .../Pages/Polar/LinePolarPage.razor | 5 ++++ .../Pages/Polar/SectorPolarPage.razor | 5 ++++ .../Pages/PolarPlotsPage.razor | 29 ------------------- .../Plotly.Blazor.Examples.csproj | 8 ++--- .../Shared/CodeSnippet.razor | 2 +- Plotly.Blazor.Examples/Shared/NavMenu.razor | 6 +++- 15 files changed, 36 insertions(+), 70 deletions(-) create mode 100644 Plotly.Blazor.Examples/Pages/Polar/AreaPolarPage.razor create mode 100644 Plotly.Blazor.Examples/Pages/Polar/CategoricalPolarPage.razor create mode 100644 Plotly.Blazor.Examples/Pages/Polar/DirectionPolarPage.razor create mode 100644 Plotly.Blazor.Examples/Pages/Polar/LinePolarPage.razor create mode 100644 Plotly.Blazor.Examples/Pages/Polar/SectorPolarPage.razor delete mode 100644 Plotly.Blazor.Examples/Pages/PolarPlotsPage.razor diff --git a/Plotly.Blazor.Examples/Components/AreaPolarChart.razor b/Plotly.Blazor.Examples/Components/AreaPolarChart.razor index 34bef74c..0777a7d2 100644 --- a/Plotly.Blazor.Examples/Components/AreaPolarChart.razor +++ b/Plotly.Blazor.Examples/Components/AreaPolarChart.razor @@ -3,13 +3,6 @@ @using Plotly.Blazor.Traces.ScatterPolarLib @using Font = Plotly.Blazor.LayoutLib.Font -@if (!IsInitialized) -{ - - - -} - @code diff --git a/Plotly.Blazor.Examples/Components/BarChart.razor b/Plotly.Blazor.Examples/Components/BarChart.razor index 1eb241bd..d8a9c7e0 100644 --- a/Plotly.Blazor.Examples/Components/BarChart.razor +++ b/Plotly.Blazor.Examples/Components/BarChart.razor @@ -1,4 +1,5 @@ @using Plotly.Blazor.LayoutLib + @code diff --git a/Plotly.Blazor.Examples/Components/CategoricalPolarChart.razor b/Plotly.Blazor.Examples/Components/CategoricalPolarChart.razor index f9e6923a..79b4c9f9 100644 --- a/Plotly.Blazor.Examples/Components/CategoricalPolarChart.razor +++ b/Plotly.Blazor.Examples/Components/CategoricalPolarChart.razor @@ -6,13 +6,6 @@ @using Font = Plotly.Blazor.LayoutLib.Font @using ThetaUnitEnum = Plotly.Blazor.Traces.ScatterPolarLib.ThetaUnitEnum -@if (!IsInitialized) -{ - - - -} - @code diff --git a/Plotly.Blazor.Examples/Components/LinePolarPlot.razor b/Plotly.Blazor.Examples/Components/LinePolarPlot.razor index 2a3fdaa8..1ddaa0b1 100644 --- a/Plotly.Blazor.Examples/Components/LinePolarPlot.razor +++ b/Plotly.Blazor.Examples/Components/LinePolarPlot.razor @@ -12,13 +12,6 @@ @using Font = Plotly.Blazor.LayoutLib.Font @inject NavigationManager MyNavigationManager -@if (!IsInitialized) -{ - - - -} - @code diff --git a/Plotly.Blazor.Examples/Components/PolarChartDirectionsChart.razor b/Plotly.Blazor.Examples/Components/PolarChartDirectionsChart.razor index 871e58e8..c4cf08a3 100644 --- a/Plotly.Blazor.Examples/Components/PolarChartDirectionsChart.razor +++ b/Plotly.Blazor.Examples/Components/PolarChartDirectionsChart.razor @@ -10,13 +10,6 @@ @using ThetaUnitEnum = Plotly.Blazor.Traces.ScatterPolarLib.ThetaUnitEnum @using TickFont = Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib.TickFont -@if (!IsInitialized) -{ - - - -} - @code diff --git a/Plotly.Blazor.Examples/Components/PolarChartSector.razor b/Plotly.Blazor.Examples/Components/PolarChartSector.razor index a53dad62..ffd8fede 100644 --- a/Plotly.Blazor.Examples/Components/PolarChartSector.razor +++ b/Plotly.Blazor.Examples/Components/PolarChartSector.razor @@ -10,13 +10,6 @@ @using ThetaUnitEnum = Plotly.Blazor.Traces.ScatterPolarLib.ThetaUnitEnum @using TickFont = Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib.TickFont -@if (!IsInitialized) -{ - - - -} - @code diff --git a/Plotly.Blazor.Examples/Pages/Polar/AreaPolarPage.razor b/Plotly.Blazor.Examples/Pages/Polar/AreaPolarPage.razor new file mode 100644 index 00000000..9ecad4f5 --- /dev/null +++ b/Plotly.Blazor.Examples/Pages/Polar/AreaPolarPage.razor @@ -0,0 +1,5 @@ +@page "/area-polar" + + + + \ No newline at end of file diff --git a/Plotly.Blazor.Examples/Pages/Polar/CategoricalPolarPage.razor b/Plotly.Blazor.Examples/Pages/Polar/CategoricalPolarPage.razor new file mode 100644 index 00000000..ef720164 --- /dev/null +++ b/Plotly.Blazor.Examples/Pages/Polar/CategoricalPolarPage.razor @@ -0,0 +1,5 @@ +@page "/categorical-polar" + + + + \ No newline at end of file diff --git a/Plotly.Blazor.Examples/Pages/Polar/DirectionPolarPage.razor b/Plotly.Blazor.Examples/Pages/Polar/DirectionPolarPage.razor new file mode 100644 index 00000000..bd12c06d --- /dev/null +++ b/Plotly.Blazor.Examples/Pages/Polar/DirectionPolarPage.razor @@ -0,0 +1,5 @@ +@page "/direction-polar" + + + + \ No newline at end of file diff --git a/Plotly.Blazor.Examples/Pages/Polar/LinePolarPage.razor b/Plotly.Blazor.Examples/Pages/Polar/LinePolarPage.razor new file mode 100644 index 00000000..d98e291b --- /dev/null +++ b/Plotly.Blazor.Examples/Pages/Polar/LinePolarPage.razor @@ -0,0 +1,5 @@ +@page "/line-polar" + + + + \ No newline at end of file diff --git a/Plotly.Blazor.Examples/Pages/Polar/SectorPolarPage.razor b/Plotly.Blazor.Examples/Pages/Polar/SectorPolarPage.razor new file mode 100644 index 00000000..9d879d1a --- /dev/null +++ b/Plotly.Blazor.Examples/Pages/Polar/SectorPolarPage.razor @@ -0,0 +1,5 @@ +@page "/sector-polar" + + + + \ No newline at end of file diff --git a/Plotly.Blazor.Examples/Pages/PolarPlotsPage.razor b/Plotly.Blazor.Examples/Pages/PolarPlotsPage.razor deleted file mode 100644 index 4006dce2..00000000 --- a/Plotly.Blazor.Examples/Pages/PolarPlotsPage.razor +++ /dev/null @@ -1,29 +0,0 @@ -@page "/poparchartpage" - - - - - -
- - - - - -
- - - - - -
- - - - - -
- - - - \ No newline at end of file diff --git a/Plotly.Blazor.Examples/Plotly.Blazor.Examples.csproj b/Plotly.Blazor.Examples/Plotly.Blazor.Examples.csproj index e1282900..901dec9a 100644 --- a/Plotly.Blazor.Examples/Plotly.Blazor.Examples.csproj +++ b/Plotly.Blazor.Examples/Plotly.Blazor.Examples.csproj @@ -6,11 +6,11 @@ true - - + + - - + + diff --git a/Plotly.Blazor.Examples/Shared/CodeSnippet.razor b/Plotly.Blazor.Examples/Shared/CodeSnippet.razor index 1421605e..c8327c84 100644 --- a/Plotly.Blazor.Examples/Shared/CodeSnippet.razor +++ b/Plotly.Blazor.Examples/Shared/CodeSnippet.razor @@ -1,4 +1,4 @@ -
@Code
+
@Code
@code { diff --git a/Plotly.Blazor.Examples/Shared/NavMenu.razor b/Plotly.Blazor.Examples/Shared/NavMenu.razor index 5d524f1c..bb184bee 100644 --- a/Plotly.Blazor.Examples/Shared/NavMenu.razor +++ b/Plotly.Blazor.Examples/Shared/NavMenu.razor @@ -21,7 +21,11 @@ ScatterGl Indicator Smith - Line Polar Plot + Line Polar + Area Polar + Categorical Polar + Polar Direction + Polar Sector Hover Event Click Event Legend Click Event From 74fc070d795a66e1bfc754fcf0f4bd5f2e88eec5 Mon Sep 17 00:00:00 2001 From: Sean McLeish Date: Wed, 22 Nov 2023 14:07:39 +0100 Subject: [PATCH 3/7] Consolidate generator and lib sources and fix comment --- .../src/Interop/EventDataPoint.cs | 16 ++++++++++++++++ Plotly.Blazor.Generator/src/PlotlyChart.razor | 3 +-- Plotly.Blazor.Generator/src/PlotlyJsInterop.cs | 2 +- Plotly.Blazor/Interop/EventDataPoint.cs | 2 +- Plotly.Blazor/Plotly.Blazor.xml | 14 +++++++++----- Plotly.Blazor/PlotlyJsInterop.cs | 12 ++++++------ Plotly.Blazor/wwwroot/plotly-interop.js | 8 ++++---- 7 files changed, 38 insertions(+), 19 deletions(-) diff --git a/Plotly.Blazor.Generator/src/Interop/EventDataPoint.cs b/Plotly.Blazor.Generator/src/Interop/EventDataPoint.cs index 8ec66652..54cef53c 100644 --- a/Plotly.Blazor.Generator/src/Interop/EventDataPoint.cs +++ b/Plotly.Blazor.Generator/src/Interop/EventDataPoint.cs @@ -56,4 +56,20 @@ public class EventDataPoint /// public object Lon { get; set; } } + + /// + /// A single event can have one selected point. + /// + public class LegendEventDataPoint + { + /// + /// The zero-based point number. Can be used to identify the trace. + /// + public object CurveNumber { get; set; } + + /// + /// The zero-based point number. Can be used to identify the expanded trace + /// + public object ExpandedIndex { get; set; } + } } diff --git a/Plotly.Blazor.Generator/src/PlotlyChart.razor b/Plotly.Blazor.Generator/src/PlotlyChart.razor index 3d0785f4..c1b787a3 100644 --- a/Plotly.Blazor.Generator/src/PlotlyChart.razor +++ b/Plotly.Blazor.Generator/src/PlotlyChart.razor @@ -7,5 +7,4 @@ @using Plotly.Blazor; @implements IDisposable -
- +
\ No newline at end of file diff --git a/Plotly.Blazor.Generator/src/PlotlyJsInterop.cs b/Plotly.Blazor.Generator/src/PlotlyJsInterop.cs index 8f8394c3..77f27def 100644 --- a/Plotly.Blazor.Generator/src/PlotlyJsInterop.cs +++ b/Plotly.Blazor.Generator/src/PlotlyJsInterop.cs @@ -225,7 +225,7 @@ public static async Task SubscribeHoverEvent(this IJSRuntime jsRuntime, DotNetOb { await jsRuntime.InvokeVoidAsync($"{PlotlyInterop}.subscribeHoverEvent", cancellationToken, objectReference, objectReference.Value.Id); } - + /// /// Can be used to subscribe to relayout events. /// diff --git a/Plotly.Blazor/Interop/EventDataPoint.cs b/Plotly.Blazor/Interop/EventDataPoint.cs index edc401ca..54cef53c 100644 --- a/Plotly.Blazor/Interop/EventDataPoint.cs +++ b/Plotly.Blazor/Interop/EventDataPoint.cs @@ -56,7 +56,7 @@ public class EventDataPoint /// public object Lon { get; set; } } - + /// /// A single event can have one selected point. /// diff --git a/Plotly.Blazor/Plotly.Blazor.xml b/Plotly.Blazor/Plotly.Blazor.xml index 3f6b2111..27528577 100644 --- a/Plotly.Blazor/Plotly.Blazor.xml +++ b/Plotly.Blazor/Plotly.Blazor.xml @@ -854,7 +854,11 @@ A single event can have one selected point. - + + + The zero-based point number. Can be used to identify the trace. + + The zero-based point number. Can be used to identify the expanded trace @@ -20660,17 +20664,17 @@ Indices. CancellationToken - + - Can be used to subscribe click events for points. + Can be used to subscribe click events for legend. The js runtime. The object reference. CancellationToken - + - Can be used to subscribe click events for legend. + Can be used to subscribe click events for points. The js runtime. The object reference. diff --git a/Plotly.Blazor/PlotlyJsInterop.cs b/Plotly.Blazor/PlotlyJsInterop.cs index 615ebba5..8f8394c3 100644 --- a/Plotly.Blazor/PlotlyJsInterop.cs +++ b/Plotly.Blazor/PlotlyJsInterop.cs @@ -194,25 +194,25 @@ await jsRuntime.InvokeVoidAsync($"{PlotlyInterop}.restyle", cancellationToken, } /// - /// Can be used to subscribe click events for points. + /// Can be used to subscribe click events for legend. /// /// The js runtime. /// The object reference. /// CancellationToken - public static async Task SubscribeClickEvent(this IJSRuntime jsRuntime, DotNetObjectReference objectReference, CancellationToken cancellationToken) + public static async Task SubscribeLegendClickEvent(this IJSRuntime jsRuntime, DotNetObjectReference objectReference, CancellationToken cancellationToken) { - await jsRuntime.InvokeVoidAsync($"{PlotlyInterop}.subscribeClickEvent", cancellationToken, objectReference, objectReference.Value.Id); + await jsRuntime.InvokeVoidAsync($"{PlotlyInterop}.subscribeLegendClickEvent", cancellationToken, objectReference, objectReference.Value.Id); } /// - /// Can be used to subscribe click events for legend. + /// Can be used to subscribe click events for points. /// /// The js runtime. /// The object reference. /// CancellationToken - public static async Task SubscribeLegendClickEvent(this IJSRuntime jsRuntime, DotNetObjectReference objectReference, CancellationToken cancellationToken) + public static async Task SubscribeClickEvent(this IJSRuntime jsRuntime, DotNetObjectReference objectReference, CancellationToken cancellationToken) { - await jsRuntime.InvokeVoidAsync($"{PlotlyInterop}.subscribeLegendClickEvent", cancellationToken, objectReference, objectReference.Value.Id); + await jsRuntime.InvokeVoidAsync($"{PlotlyInterop}.subscribeClickEvent", cancellationToken, objectReference, objectReference.Value.Id); } /// diff --git a/Plotly.Blazor/wwwroot/plotly-interop.js b/Plotly.Blazor/wwwroot/plotly-interop.js index 920c5721..d297183c 100644 --- a/Plotly.Blazor/wwwroot/plotly-interop.js +++ b/Plotly.Blazor/wwwroot/plotly-interop.js @@ -64,10 +64,10 @@ plot.on('plotly_legendclick', function (data) { console.log("title: " + data.layout.title.text + " curveNumber:" + data.curveNumber + " expandedIndex:" + data.expandedIndex) - dotNetObj.invokeMethodAsync('LegendClickEvent', { - CurveNumber: data.curveNumber, - ExpandedIndex: data.expandedIndex - }) + dotNetObj.invokeMethodAsync('LegendClickEvent', { + CurveNumber: data.curveNumber, + ExpandedIndex: data.expandedIndex + }) }) }, subscribeClickEvent: function (dotNetObj, id) { From d4f1787fa57e1a36cf81479301bb3ad39f9b06ee Mon Sep 17 00:00:00 2001 From: Sean McLeish Date: Wed, 22 Nov 2023 14:09:34 +0100 Subject: [PATCH 4/7] Remove console log --- Plotly.Blazor.Generator/src/wwwroot/plotly-interop.js | 2 -- Plotly.Blazor/wwwroot/plotly-interop.js | 2 -- 2 files changed, 4 deletions(-) diff --git a/Plotly.Blazor.Generator/src/wwwroot/plotly-interop.js b/Plotly.Blazor.Generator/src/wwwroot/plotly-interop.js index d297183c..73f6edd3 100644 --- a/Plotly.Blazor.Generator/src/wwwroot/plotly-interop.js +++ b/Plotly.Blazor.Generator/src/wwwroot/plotly-interop.js @@ -62,8 +62,6 @@ subscribeLegendClickEvent: function (dotNetObj, id) { var plot = document.getElementById(id); plot.on('plotly_legendclick', function (data) { - console.log("title: " + data.layout.title.text + " curveNumber:" + data.curveNumber + " expandedIndex:" + data.expandedIndex) - dotNetObj.invokeMethodAsync('LegendClickEvent', { CurveNumber: data.curveNumber, ExpandedIndex: data.expandedIndex diff --git a/Plotly.Blazor/wwwroot/plotly-interop.js b/Plotly.Blazor/wwwroot/plotly-interop.js index d297183c..73f6edd3 100644 --- a/Plotly.Blazor/wwwroot/plotly-interop.js +++ b/Plotly.Blazor/wwwroot/plotly-interop.js @@ -62,8 +62,6 @@ subscribeLegendClickEvent: function (dotNetObj, id) { var plot = document.getElementById(id); plot.on('plotly_legendclick', function (data) { - console.log("title: " + data.layout.title.text + " curveNumber:" + data.curveNumber + " expandedIndex:" + data.expandedIndex) - dotNetObj.invokeMethodAsync('LegendClickEvent', { CurveNumber: data.curveNumber, ExpandedIndex: data.expandedIndex From a5cf21412634a3af8912b34beb156c744d72c311 Mon Sep 17 00:00:00 2001 From: Sean McLeish Date: Wed, 22 Nov 2023 14:18:39 +0100 Subject: [PATCH 5/7] Fix overwritten relayout event data --- Plotly.Blazor.Generator/src/Interop/RelayoutEventData.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Plotly.Blazor.Generator/src/Interop/RelayoutEventData.cs b/Plotly.Blazor.Generator/src/Interop/RelayoutEventData.cs index ee0bc0a6..2f41b3db 100644 --- a/Plotly.Blazor.Generator/src/Interop/RelayoutEventData.cs +++ b/Plotly.Blazor.Generator/src/Interop/RelayoutEventData.cs @@ -19,8 +19,7 @@ public class RelayoutEventData /// /// In some cases this may be not be set. /// - public double[] XRange { get; set; } - + public object[] XRange { get; set; } /// /// The y-axis of the layout. [y0, y1]. @@ -28,6 +27,6 @@ public class RelayoutEventData /// /// In some cases this may be not be set. /// - public double[] YRange { get; set; } + public object[] YRange { get; set; } } } From c17a3bc5b19737dbefc4d1645aeb735c854aa26c Mon Sep 17 00:00:00 2001 From: Sean McLeish Date: Wed, 22 Nov 2023 14:19:04 +0100 Subject: [PATCH 6/7] Remove generated code version to reduce noise on bumps --- Plotly.Blazor.Generator/Templates/Class/Class.txt | 2 +- Plotly.Blazor.Generator/Templates/Enumerated/Enumerated.txt | 2 +- Plotly.Blazor.Generator/Templates/Flag/Flag.txt | 2 +- Plotly.Blazor.Generator/Templates/Interface/Interface.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Plotly.Blazor.Generator/Templates/Class/Class.txt b/Plotly.Blazor.Generator/Templates/Class/Class.txt index 3a5842f9..c6a8c466 100644 --- a/Plotly.Blazor.Generator/Templates/Class/Class.txt +++ b/Plotly.Blazor.Generator/Templates/Class/Class.txt @@ -21,7 +21,7 @@ namespace {{Namespace}} /// {{.}} {{/Description}} /// - [System.CodeDom.Compiler.GeneratedCode("{{GeneratorName}}", "{{GeneratorVersion}}")] + [System.CodeDom.Compiler.GeneratedCode("{{GeneratorName}}", null)] {{#HasSpecialProperties}} [JsonConverter(typeof(PlotlyConverter))] {{/HasSpecialProperties}} diff --git a/Plotly.Blazor.Generator/Templates/Enumerated/Enumerated.txt b/Plotly.Blazor.Generator/Templates/Enumerated/Enumerated.txt index 336640fb..0f0ca924 100644 --- a/Plotly.Blazor.Generator/Templates/Enumerated/Enumerated.txt +++ b/Plotly.Blazor.Generator/Templates/Enumerated/Enumerated.txt @@ -13,7 +13,7 @@ namespace {{Namespace}} /// {{.}} {{/Description}} /// - [System.CodeDom.Compiler.GeneratedCode("{{GeneratorName}}", "{{GeneratorVersion}}")] + [System.CodeDom.Compiler.GeneratedCode("{{GeneratorName}}", null)] [JsonConverter(typeof(EnumConverter))] public enum {{Name}} { diff --git a/Plotly.Blazor.Generator/Templates/Flag/Flag.txt b/Plotly.Blazor.Generator/Templates/Flag/Flag.txt index 1947e135..42da54f0 100644 --- a/Plotly.Blazor.Generator/Templates/Flag/Flag.txt +++ b/Plotly.Blazor.Generator/Templates/Flag/Flag.txt @@ -14,7 +14,7 @@ namespace {{Namespace}} /// {{.}} {{/Description}} /// - [System.CodeDom.Compiler.GeneratedCode("{{GeneratorName}}", "{{GeneratorVersion}}")] + [System.CodeDom.Compiler.GeneratedCode("{{GeneratorName}}", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum {{Name}} diff --git a/Plotly.Blazor.Generator/Templates/Interface/Interface.txt b/Plotly.Blazor.Generator/Templates/Interface/Interface.txt index 9c04e295..ce11a27a 100644 --- a/Plotly.Blazor.Generator/Templates/Interface/Interface.txt +++ b/Plotly.Blazor.Generator/Templates/Interface/Interface.txt @@ -12,7 +12,7 @@ namespace {{Namespace}} /// {{.}} {{/Description}} /// - [System.CodeDom.Compiler.GeneratedCode("{{GeneratorName}}", "{{GeneratorVersion}}")] + [System.CodeDom.Compiler.GeneratedCode("{{GeneratorName}}", null)] public interface {{Name}} { {{#Properties}} From 17738fcdf7386a89d172083d5228a0d166342c23 Mon Sep 17 00:00:00 2001 From: Sean McLeish Date: Wed, 22 Nov 2023 14:24:27 +0100 Subject: [PATCH 7/7] Remove generated code version from source --- .../src/Interop/RelayoutEventData.cs | 9 +-------- Plotly.Blazor/Animation.cs | 2 +- Plotly.Blazor/AnimationLib/DirectionEnum.cs | 2 +- Plotly.Blazor/AnimationLib/Frame.cs | 2 +- Plotly.Blazor/AnimationLib/ModeEnum.cs | 2 +- Plotly.Blazor/AnimationLib/Transition.cs | 2 +- .../AnimationLib/TransitionLib/EasingEnum.cs | 2 +- .../AnimationLib/TransitionLib/OrderingEnum.cs | 2 +- Plotly.Blazor/Config.cs | 2 +- Plotly.Blazor/ConfigLib/DisplayModeBarEnum.cs | 2 +- Plotly.Blazor/ConfigLib/DoubleClickEnum.cs | 2 +- Plotly.Blazor/ConfigLib/Edits.cs | 2 +- Plotly.Blazor/ConfigLib/ScrollZoomFlag.cs | 2 +- Plotly.Blazor/Frames.cs | 2 +- Plotly.Blazor/ITrace.cs | 2 +- Plotly.Blazor/ITransform.cs | 2 +- Plotly.Blazor/Interop/RelayoutEventData.cs | 14 +++----------- Plotly.Blazor/Layout.cs | 2 +- Plotly.Blazor/LayoutLib/ActiveSelection.cs | 2 +- Plotly.Blazor/LayoutLib/ActiveShape.cs | 2 +- Plotly.Blazor/LayoutLib/Annotation.cs | 2 +- Plotly.Blazor/LayoutLib/AnnotationLib/AlignEnum.cs | 2 +- .../LayoutLib/AnnotationLib/ArrowSideFlag.cs | 2 +- .../LayoutLib/AnnotationLib/ClickToShowEnum.cs | 2 +- Plotly.Blazor/LayoutLib/AnnotationLib/Font.cs | 2 +- .../LayoutLib/AnnotationLib/HoverLabel.cs | 2 +- .../LayoutLib/AnnotationLib/HoverLabelLib/Font.cs | 2 +- .../LayoutLib/AnnotationLib/VAlignEnum.cs | 2 +- .../LayoutLib/AnnotationLib/XAnchorEnum.cs | 2 +- .../LayoutLib/AnnotationLib/YAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/AutoTypeNumbersEnum.cs | 2 +- Plotly.Blazor/LayoutLib/BarModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/BarNormEnum.cs | 2 +- Plotly.Blazor/LayoutLib/BoxModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/CalendarEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ClickModeFlag.cs | 2 +- Plotly.Blazor/LayoutLib/ColorAxis.cs | 2 +- Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBar.cs | 2 +- .../ColorAxisLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../ColorAxisLib/ColorBarLib/LenModeEnum.cs | 2 +- .../ColorAxisLib/ColorBarLib/OrientationEnum.cs | 2 +- .../ColorAxisLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../ColorAxisLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ColorAxisLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../ColorAxisLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../LayoutLib/ColorAxisLib/ColorBarLib/TickFont.cs | 2 +- .../ColorAxisLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../ColorAxisLib/ColorBarLib/TickModeEnum.cs | 2 +- .../ColorAxisLib/ColorBarLib/TicksEnum.cs | 2 +- .../LayoutLib/ColorAxisLib/ColorBarLib/Title.cs | 2 +- .../ColorAxisLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../ColorAxisLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../ColorAxisLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../LayoutLib/ColorAxisLib/ColorBarLib/XRefEnum.cs | 2 +- .../ColorAxisLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../LayoutLib/ColorAxisLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ColorScale.cs | 2 +- Plotly.Blazor/LayoutLib/DragModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/FunnelModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Geo.cs | 2 +- Plotly.Blazor/LayoutLib/GeoLib/Center.cs | 2 +- Plotly.Blazor/LayoutLib/GeoLib/Domain.cs | 2 +- Plotly.Blazor/LayoutLib/GeoLib/FitBoundsEnum.cs | 2 +- Plotly.Blazor/LayoutLib/GeoLib/LaTaxis.cs | 2 +- Plotly.Blazor/LayoutLib/GeoLib/LonAxis.cs | 2 +- Plotly.Blazor/LayoutLib/GeoLib/Projection.cs | 2 +- .../LayoutLib/GeoLib/ProjectionLib/Rotation.cs | 2 +- .../LayoutLib/GeoLib/ProjectionLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/GeoLib/ResolutionEnum.cs | 2 +- Plotly.Blazor/LayoutLib/GeoLib/ScopeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Grid.cs | 2 +- Plotly.Blazor/LayoutLib/GridLib/Domain.cs | 2 +- Plotly.Blazor/LayoutLib/GridLib/PatternEnum.cs | 2 +- Plotly.Blazor/LayoutLib/GridLib/RowOrderEnum.cs | 2 +- Plotly.Blazor/LayoutLib/GridLib/XSideEnum.cs | 2 +- Plotly.Blazor/LayoutLib/GridLib/YSideEnum.cs | 2 +- Plotly.Blazor/LayoutLib/HoverLabel.cs | 2 +- Plotly.Blazor/LayoutLib/HoverLabelLib/AlignEnum.cs | 2 +- Plotly.Blazor/LayoutLib/HoverLabelLib/Font.cs | 2 +- .../LayoutLib/HoverLabelLib/GroupTitleFont.cs | 2 +- Plotly.Blazor/LayoutLib/HoverModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Image.cs | 2 +- Plotly.Blazor/LayoutLib/ImageLib/LayerEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ImageLib/SizingEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ImageLib/XAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ImageLib/YAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Legend.cs | 2 +- .../LayoutLib/LegendLib/EntryWidthModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/LegendLib/Font.cs | 2 +- .../LayoutLib/LegendLib/GroupClickEnum.cs | 2 +- .../LayoutLib/LegendLib/GroupTitleFont.cs | 2 +- Plotly.Blazor/LayoutLib/LegendLib/ItemClickEnum.cs | 2 +- .../LayoutLib/LegendLib/ItemDoubleClickEnum.cs | 2 +- .../LayoutLib/LegendLib/ItemSizingEnum.cs | 2 +- .../LayoutLib/LegendLib/OrientationEnum.cs | 2 +- Plotly.Blazor/LayoutLib/LegendLib/Title.cs | 2 +- Plotly.Blazor/LayoutLib/LegendLib/TitleLib/Font.cs | 2 +- .../LayoutLib/LegendLib/TitleLib/SideEnum.cs | 2 +- .../LayoutLib/LegendLib/TraceOrderFlag.cs | 2 +- Plotly.Blazor/LayoutLib/LegendLib/VAlignEnum.cs | 2 +- Plotly.Blazor/LayoutLib/LegendLib/XAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/LegendLib/XRefEnum.cs | 2 +- Plotly.Blazor/LayoutLib/LegendLib/YAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/LegendLib/YRefEnum.cs | 2 +- Plotly.Blazor/LayoutLib/MapBox.cs | 2 +- Plotly.Blazor/LayoutLib/MapBoxLib/Bounds.cs | 2 +- Plotly.Blazor/LayoutLib/MapBoxLib/Center.cs | 2 +- Plotly.Blazor/LayoutLib/MapBoxLib/Domain.cs | 2 +- Plotly.Blazor/LayoutLib/MapBoxLib/Layer.cs | 2 +- .../LayoutLib/MapBoxLib/LayerLib/Circle.cs | 2 +- Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Fill.cs | 2 +- Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Line.cs | 2 +- .../LayoutLib/MapBoxLib/LayerLib/SourceTypeEnum.cs | 2 +- .../LayoutLib/MapBoxLib/LayerLib/Symbol.cs | 2 +- .../MapBoxLib/LayerLib/SymbolLib/PlacementEnum.cs | 2 +- .../MapBoxLib/LayerLib/SymbolLib/TextFont.cs | 2 +- .../LayerLib/SymbolLib/TextPositionEnum.cs | 2 +- .../LayoutLib/MapBoxLib/LayerLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Margin.cs | 2 +- Plotly.Blazor/LayoutLib/ModeBar.cs | 2 +- .../LayoutLib/ModeBarLib/OrientationEnum.cs | 2 +- Plotly.Blazor/LayoutLib/NewSelection.cs | 2 +- Plotly.Blazor/LayoutLib/NewSelectionLib/Line.cs | 2 +- .../LayoutLib/NewSelectionLib/ModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/NewShape.cs | 2 +- .../LayoutLib/NewShapeLib/DrawDirectionEnum.cs | 2 +- .../LayoutLib/NewShapeLib/FillRuleEnum.cs | 2 +- Plotly.Blazor/LayoutLib/NewShapeLib/Label.cs | 2 +- .../LayoutLib/NewShapeLib/LabelLib/Font.cs | 2 +- .../NewShapeLib/LabelLib/TextPositionEnum.cs | 2 +- .../LayoutLib/NewShapeLib/LabelLib/XAnchorEnum.cs | 2 +- .../LayoutLib/NewShapeLib/LabelLib/YAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/NewShapeLib/LayerEnum.cs | 2 +- .../LayoutLib/NewShapeLib/LegendGroupTitle.cs | 2 +- .../NewShapeLib/LegendGroupTitleLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/NewShapeLib/Line.cs | 2 +- Plotly.Blazor/LayoutLib/NewShapeLib/VisibleEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Polar.cs | 2 +- Plotly.Blazor/LayoutLib/PolarLib/AngularAxis.cs | 2 +- .../PolarLib/AngularAxisLib/AutoTypeNumbersEnum.cs | 2 +- .../PolarLib/AngularAxisLib/CategoryOrderEnum.cs | 2 +- .../PolarLib/AngularAxisLib/DirectionEnum.cs | 2 +- .../PolarLib/AngularAxisLib/ExponentFormatEnum.cs | 2 +- .../LayoutLib/PolarLib/AngularAxisLib/LayerEnum.cs | 2 +- .../PolarLib/AngularAxisLib/ShowExponentEnum.cs | 2 +- .../PolarLib/AngularAxisLib/ShowTickPrefixEnum.cs | 2 +- .../PolarLib/AngularAxisLib/ShowTickSuffixEnum.cs | 2 +- .../PolarLib/AngularAxisLib/ThetaUnitEnum.cs | 2 +- .../LayoutLib/PolarLib/AngularAxisLib/TickFont.cs | 2 +- .../PolarLib/AngularAxisLib/TickFormatStop.cs | 2 +- .../PolarLib/AngularAxisLib/TickModeEnum.cs | 2 +- .../LayoutLib/PolarLib/AngularAxisLib/TicksEnum.cs | 2 +- .../LayoutLib/PolarLib/AngularAxisLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/PolarLib/Domain.cs | 2 +- Plotly.Blazor/LayoutLib/PolarLib/GridShapeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/PolarLib/RadialAxis.cs | 2 +- .../PolarLib/RadialAxisLib/AutoRangeEnum.cs | 2 +- .../PolarLib/RadialAxisLib/AutoTypeNumbersEnum.cs | 2 +- .../PolarLib/RadialAxisLib/Autorangeoptions.cs | 2 +- .../PolarLib/RadialAxisLib/CalendarEnum.cs | 2 +- .../PolarLib/RadialAxisLib/CategoryOrderEnum.cs | 2 +- .../PolarLib/RadialAxisLib/ExponentFormatEnum.cs | 2 +- .../LayoutLib/PolarLib/RadialAxisLib/LayerEnum.cs | 2 +- .../PolarLib/RadialAxisLib/RangeModeEnum.cs | 2 +- .../PolarLib/RadialAxisLib/ShowExponentEnum.cs | 2 +- .../PolarLib/RadialAxisLib/ShowTickPrefixEnum.cs | 2 +- .../PolarLib/RadialAxisLib/ShowTickSuffixEnum.cs | 2 +- .../LayoutLib/PolarLib/RadialAxisLib/SideEnum.cs | 2 +- .../LayoutLib/PolarLib/RadialAxisLib/TickFont.cs | 2 +- .../PolarLib/RadialAxisLib/TickFormatStop.cs | 2 +- .../PolarLib/RadialAxisLib/TickModeEnum.cs | 2 +- .../LayoutLib/PolarLib/RadialAxisLib/TicksEnum.cs | 2 +- .../LayoutLib/PolarLib/RadialAxisLib/Title.cs | 2 +- .../PolarLib/RadialAxisLib/TitleLib/Font.cs | 2 +- .../LayoutLib/PolarLib/RadialAxisLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ScatterModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Scene.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/Annotation.cs | 2 +- .../LayoutLib/SceneLib/AnnotationLib/AlignEnum.cs | 2 +- .../SceneLib/AnnotationLib/ArrowSideFlag.cs | 2 +- .../LayoutLib/SceneLib/AnnotationLib/Font.cs | 2 +- .../LayoutLib/SceneLib/AnnotationLib/HoverLabel.cs | 2 +- .../SceneLib/AnnotationLib/HoverLabelLib/Font.cs | 2 +- .../LayoutLib/SceneLib/AnnotationLib/VAlignEnum.cs | 2 +- .../SceneLib/AnnotationLib/XAnchorEnum.cs | 2 +- .../SceneLib/AnnotationLib/YAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/AspectModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/AspectRatio.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/Camera.cs | 2 +- .../LayoutLib/SceneLib/CameraLib/Center.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Eye.cs | 2 +- .../LayoutLib/SceneLib/CameraLib/Projection.cs | 2 +- .../SceneLib/CameraLib/ProjectionLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Up.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/Domain.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/DragModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/HoverModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/XAxis.cs | 2 +- .../LayoutLib/SceneLib/XAxisLib/AutoRangeEnum.cs | 2 +- .../SceneLib/XAxisLib/AutoTypeNumbersEnum.cs | 2 +- .../SceneLib/XAxisLib/Autorangeoptions.cs | 2 +- .../LayoutLib/SceneLib/XAxisLib/CalendarEnum.cs | 2 +- .../SceneLib/XAxisLib/CategoryOrderEnum.cs | 2 +- .../SceneLib/XAxisLib/ExponentFormatEnum.cs | 2 +- .../LayoutLib/SceneLib/XAxisLib/MirrorEnum.cs | 2 +- .../LayoutLib/SceneLib/XAxisLib/RangeModeEnum.cs | 2 +- .../SceneLib/XAxisLib/ShowExponentEnum.cs | 2 +- .../SceneLib/XAxisLib/ShowTickPrefixEnum.cs | 2 +- .../SceneLib/XAxisLib/ShowTickSuffixEnum.cs | 2 +- .../LayoutLib/SceneLib/XAxisLib/TickFont.cs | 2 +- .../LayoutLib/SceneLib/XAxisLib/TickFormatStop.cs | 2 +- .../LayoutLib/SceneLib/XAxisLib/TickModeEnum.cs | 2 +- .../LayoutLib/SceneLib/XAxisLib/TicksEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/Title.cs | 2 +- .../LayoutLib/SceneLib/XAxisLib/TitleLib/Font.cs | 2 +- .../LayoutLib/SceneLib/XAxisLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/YAxis.cs | 2 +- .../LayoutLib/SceneLib/YAxisLib/AutoRangeEnum.cs | 2 +- .../SceneLib/YAxisLib/AutoTypeNumbersEnum.cs | 2 +- .../SceneLib/YAxisLib/Autorangeoptions.cs | 2 +- .../LayoutLib/SceneLib/YAxisLib/CalendarEnum.cs | 2 +- .../SceneLib/YAxisLib/CategoryOrderEnum.cs | 2 +- .../SceneLib/YAxisLib/ExponentFormatEnum.cs | 2 +- .../LayoutLib/SceneLib/YAxisLib/MirrorEnum.cs | 2 +- .../LayoutLib/SceneLib/YAxisLib/RangeModeEnum.cs | 2 +- .../SceneLib/YAxisLib/ShowExponentEnum.cs | 2 +- .../SceneLib/YAxisLib/ShowTickPrefixEnum.cs | 2 +- .../SceneLib/YAxisLib/ShowTickSuffixEnum.cs | 2 +- .../LayoutLib/SceneLib/YAxisLib/TickFont.cs | 2 +- .../LayoutLib/SceneLib/YAxisLib/TickFormatStop.cs | 2 +- .../LayoutLib/SceneLib/YAxisLib/TickModeEnum.cs | 2 +- .../LayoutLib/SceneLib/YAxisLib/TicksEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/Title.cs | 2 +- .../LayoutLib/SceneLib/YAxisLib/TitleLib/Font.cs | 2 +- .../LayoutLib/SceneLib/YAxisLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/ZAxis.cs | 2 +- .../LayoutLib/SceneLib/ZAxisLib/AutoRangeEnum.cs | 2 +- .../SceneLib/ZAxisLib/AutoTypeNumbersEnum.cs | 2 +- .../SceneLib/ZAxisLib/Autorangeoptions.cs | 2 +- .../LayoutLib/SceneLib/ZAxisLib/CalendarEnum.cs | 2 +- .../SceneLib/ZAxisLib/CategoryOrderEnum.cs | 2 +- .../SceneLib/ZAxisLib/ExponentFormatEnum.cs | 2 +- .../LayoutLib/SceneLib/ZAxisLib/MirrorEnum.cs | 2 +- .../LayoutLib/SceneLib/ZAxisLib/RangeModeEnum.cs | 2 +- .../SceneLib/ZAxisLib/ShowExponentEnum.cs | 2 +- .../SceneLib/ZAxisLib/ShowTickPrefixEnum.cs | 2 +- .../SceneLib/ZAxisLib/ShowTickSuffixEnum.cs | 2 +- .../LayoutLib/SceneLib/ZAxisLib/TickFont.cs | 2 +- .../LayoutLib/SceneLib/ZAxisLib/TickFormatStop.cs | 2 +- .../LayoutLib/SceneLib/ZAxisLib/TickModeEnum.cs | 2 +- .../LayoutLib/SceneLib/ZAxisLib/TicksEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/Title.cs | 2 +- .../LayoutLib/SceneLib/ZAxisLib/TitleLib/Font.cs | 2 +- .../LayoutLib/SceneLib/ZAxisLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SelectDirectionEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Selection.cs | 2 +- Plotly.Blazor/LayoutLib/SelectionLib/Line.cs | 2 +- Plotly.Blazor/LayoutLib/SelectionLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Shape.cs | 2 +- Plotly.Blazor/LayoutLib/ShapeLib/FillRuleEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ShapeLib/Label.cs | 2 +- Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/Font.cs | 2 +- .../ShapeLib/LabelLib/TextPositionEnum.cs | 2 +- .../LayoutLib/ShapeLib/LabelLib/XAnchorEnum.cs | 2 +- .../LayoutLib/ShapeLib/LabelLib/YAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ShapeLib/LayerEnum.cs | 2 +- .../LayoutLib/ShapeLib/LegendGroupTitle.cs | 2 +- .../LayoutLib/ShapeLib/LegendGroupTitleLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/ShapeLib/Line.cs | 2 +- Plotly.Blazor/LayoutLib/ShapeLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ShapeLib/VisibleEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ShapeLib/XSizeModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ShapeLib/YSizeModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Slider.cs | 2 +- Plotly.Blazor/LayoutLib/SliderLib/CurrentValue.cs | 2 +- .../LayoutLib/SliderLib/CurrentValueLib/Font.cs | 2 +- .../SliderLib/CurrentValueLib/XAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SliderLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/SliderLib/LenModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SliderLib/Pad.cs | 2 +- Plotly.Blazor/LayoutLib/SliderLib/Step.cs | 2 +- .../LayoutLib/SliderLib/StepLib/MethodEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SliderLib/Transition.cs | 2 +- .../SliderLib/TransitionLib/EasingEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SliderLib/XAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SliderLib/YAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Smith.cs | 2 +- Plotly.Blazor/LayoutLib/SmithLib/Domain.cs | 2 +- Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxis.cs | 2 +- .../SmithLib/ImaginaryAxisLib/LayerEnum.cs | 2 +- .../ImaginaryAxisLib/ShowTickPrefixEnum.cs | 2 +- .../ImaginaryAxisLib/ShowTickSuffixEnum.cs | 2 +- .../SmithLib/ImaginaryAxisLib/TickFont.cs | 2 +- .../SmithLib/ImaginaryAxisLib/TicksEnum.cs | 2 +- Plotly.Blazor/LayoutLib/SmithLib/RealAxis.cs | 2 +- .../LayoutLib/SmithLib/RealAxisLib/LayerEnum.cs | 2 +- .../SmithLib/RealAxisLib/ShowTickPrefixEnum.cs | 2 +- .../SmithLib/RealAxisLib/ShowTickSuffixEnum.cs | 2 +- .../LayoutLib/SmithLib/RealAxisLib/SideEnum.cs | 2 +- .../LayoutLib/SmithLib/RealAxisLib/TickFont.cs | 2 +- .../LayoutLib/SmithLib/RealAxisLib/TicksEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Ternary.cs | 2 +- Plotly.Blazor/LayoutLib/TernaryLib/AAxis.cs | 2 +- .../TernaryLib/AAxisLib/ExponentFormatEnum.cs | 2 +- .../LayoutLib/TernaryLib/AAxisLib/LayerEnum.cs | 2 +- .../TernaryLib/AAxisLib/ShowExponentEnum.cs | 2 +- .../TernaryLib/AAxisLib/ShowTickPrefixEnum.cs | 2 +- .../TernaryLib/AAxisLib/ShowTickSuffixEnum.cs | 2 +- .../LayoutLib/TernaryLib/AAxisLib/TickFont.cs | 2 +- .../TernaryLib/AAxisLib/TickFormatStop.cs | 2 +- .../LayoutLib/TernaryLib/AAxisLib/TickModeEnum.cs | 2 +- .../LayoutLib/TernaryLib/AAxisLib/TicksEnum.cs | 2 +- .../LayoutLib/TernaryLib/AAxisLib/Title.cs | 2 +- .../LayoutLib/TernaryLib/AAxisLib/TitleLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/TernaryLib/BAxis.cs | 2 +- .../TernaryLib/BAxisLib/ExponentFormatEnum.cs | 2 +- .../LayoutLib/TernaryLib/BAxisLib/LayerEnum.cs | 2 +- .../TernaryLib/BAxisLib/ShowExponentEnum.cs | 2 +- .../TernaryLib/BAxisLib/ShowTickPrefixEnum.cs | 2 +- .../TernaryLib/BAxisLib/ShowTickSuffixEnum.cs | 2 +- .../LayoutLib/TernaryLib/BAxisLib/TickFont.cs | 2 +- .../TernaryLib/BAxisLib/TickFormatStop.cs | 2 +- .../LayoutLib/TernaryLib/BAxisLib/TickModeEnum.cs | 2 +- .../LayoutLib/TernaryLib/BAxisLib/TicksEnum.cs | 2 +- .../LayoutLib/TernaryLib/BAxisLib/Title.cs | 2 +- .../LayoutLib/TernaryLib/BAxisLib/TitleLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/TernaryLib/CAxis.cs | 2 +- .../TernaryLib/CAxisLib/ExponentFormatEnum.cs | 2 +- .../LayoutLib/TernaryLib/CAxisLib/LayerEnum.cs | 2 +- .../TernaryLib/CAxisLib/ShowExponentEnum.cs | 2 +- .../TernaryLib/CAxisLib/ShowTickPrefixEnum.cs | 2 +- .../TernaryLib/CAxisLib/ShowTickSuffixEnum.cs | 2 +- .../LayoutLib/TernaryLib/CAxisLib/TickFont.cs | 2 +- .../TernaryLib/CAxisLib/TickFormatStop.cs | 2 +- .../LayoutLib/TernaryLib/CAxisLib/TickModeEnum.cs | 2 +- .../LayoutLib/TernaryLib/CAxisLib/TicksEnum.cs | 2 +- .../LayoutLib/TernaryLib/CAxisLib/Title.cs | 2 +- .../LayoutLib/TernaryLib/CAxisLib/TitleLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/TernaryLib/Domain.cs | 2 +- Plotly.Blazor/LayoutLib/Title.cs | 2 +- Plotly.Blazor/LayoutLib/TitleLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/TitleLib/Pad.cs | 2 +- Plotly.Blazor/LayoutLib/TitleLib/XAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/TitleLib/XrefEnum.cs | 2 +- Plotly.Blazor/LayoutLib/TitleLib/YAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/TitleLib/YRefEnum.cs | 2 +- Plotly.Blazor/LayoutLib/Transition.cs | 2 +- .../LayoutLib/TransitionLib/EasingEnum.cs | 2 +- .../LayoutLib/TransitionLib/OrderingEnum.cs | 2 +- Plotly.Blazor/LayoutLib/UniformText.cs | 2 +- Plotly.Blazor/LayoutLib/UniformTextLib/ModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/UpdateMenu.cs | 2 +- Plotly.Blazor/LayoutLib/UpdateMenuLib/Button.cs | 2 +- .../UpdateMenuLib/ButtonLib/MethodEnum.cs | 2 +- .../LayoutLib/UpdateMenuLib/DirectionEnum.cs | 2 +- Plotly.Blazor/LayoutLib/UpdateMenuLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/UpdateMenuLib/Pad.cs | 2 +- Plotly.Blazor/LayoutLib/UpdateMenuLib/TypeEnum.cs | 2 +- .../LayoutLib/UpdateMenuLib/XAnchorEnum.cs | 2 +- .../LayoutLib/UpdateMenuLib/YAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/ViolinModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/WaterfallModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxis.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/AutoMarginFlag.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/AutoRangeEnum.cs | 2 +- .../LayoutLib/XAxisLib/AutoTypeNumbersEnum.cs | 2 +- .../LayoutLib/XAxisLib/Autorangeoptions.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/CalendarEnum.cs | 2 +- .../LayoutLib/XAxisLib/CategoryOrderEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/ConstrainEnum.cs | 2 +- .../LayoutLib/XAxisLib/ConstrainTowardEnum.cs | 2 +- .../LayoutLib/XAxisLib/ExponentFormatEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/LayerEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/Minor.cs | 2 +- .../LayoutLib/XAxisLib/MinorLib/TickModeEnum.cs | 2 +- .../LayoutLib/XAxisLib/MinorLib/TicksEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/MirrorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/RangeBreak.cs | 2 +- .../XAxisLib/RangeBreakLib/PatternEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/RangeModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/RangeSelector.cs | 2 +- .../LayoutLib/XAxisLib/RangeSelectorLib/Button.cs | 2 +- .../RangeSelectorLib/ButtonLib/StepEnum.cs | 2 +- .../RangeSelectorLib/ButtonLib/StepModeEnum.cs | 2 +- .../LayoutLib/XAxisLib/RangeSelectorLib/Font.cs | 2 +- .../XAxisLib/RangeSelectorLib/XAnchorEnum.cs | 2 +- .../XAxisLib/RangeSelectorLib/YAnchorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/RangeSlider.cs | 2 +- .../LayoutLib/XAxisLib/RangeSliderLib/YAxis.cs | 2 +- .../RangeSliderLib/YAxisLib/RangeModeEnum.cs | 2 +- .../LayoutLib/XAxisLib/ShowExponentEnum.cs | 2 +- .../LayoutLib/XAxisLib/ShowTickPrefixEnum.cs | 2 +- .../LayoutLib/XAxisLib/ShowTickSuffixEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/SideEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/SpikeModeFlag.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/SpikeSnapEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/TickFont.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/TickFormatStop.cs | 2 +- .../LayoutLib/XAxisLib/TickLabelOverflowEnum.cs | 2 +- .../LayoutLib/XAxisLib/TickLabelPositionEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/TickModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/TickSonEnum.cs | 2 +- .../LayoutLib/XAxisLib/TicklabelmodeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/TicksEnum.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/Title.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/TitleLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/XAxisLib/TypeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxis.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/AutoMarginFlag.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/AutoRangeEnum.cs | 2 +- .../LayoutLib/YAxisLib/AutoTypeNumbersEnum.cs | 2 +- .../LayoutLib/YAxisLib/Autorangeoptions.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/CalendarEnum.cs | 2 +- .../LayoutLib/YAxisLib/CategoryOrderEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/ConstrainEnum.cs | 2 +- .../LayoutLib/YAxisLib/ConstrainTowardEnum.cs | 2 +- .../LayoutLib/YAxisLib/ExponentFormatEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/LayerEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/Minor.cs | 2 +- .../LayoutLib/YAxisLib/MinorLib/TickModeEnum.cs | 2 +- .../LayoutLib/YAxisLib/MinorLib/TicksEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/MirrorEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/RangeBreak.cs | 2 +- .../YAxisLib/RangeBreakLib/PatternEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/RangeModeEnum.cs | 2 +- .../LayoutLib/YAxisLib/ShowExponentEnum.cs | 2 +- .../LayoutLib/YAxisLib/ShowTickPrefixEnum.cs | 2 +- .../LayoutLib/YAxisLib/ShowTickSuffixEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/SideEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/SpikeModeFlag.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/SpikeSnapEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/TickFont.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/TickFormatStop.cs | 2 +- .../LayoutLib/YAxisLib/TickLabelOverflowEnum.cs | 2 +- .../LayoutLib/YAxisLib/TickLabelPositionEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/TickModeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/TickSonEnum.cs | 2 +- .../LayoutLib/YAxisLib/TicklabelmodeEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/TicksEnum.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/Title.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/TitleLib/Font.cs | 2 +- Plotly.Blazor/LayoutLib/YAxisLib/TypeEnum.cs | 2 +- Plotly.Blazor/PlotlyJsInterop.cs | 2 +- Plotly.Blazor/TraceTypeEnum.cs | 2 +- Plotly.Blazor/Traces/Bar.cs | 2 +- Plotly.Blazor/Traces/BarLib/ConstrainTextEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/ErrorX.cs | 2 +- Plotly.Blazor/Traces/BarLib/ErrorXLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/ErrorY.cs | 2 +- Plotly.Blazor/Traces/BarLib/ErrorYLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/BarLib/HoverLabel.cs | 2 +- .../Traces/BarLib/HoverLabelLib/AlignEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/HoverLabelLib/Font.cs | 2 +- .../Traces/BarLib/InsideTextAnchorEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/InsideTextFont.cs | 2 +- Plotly.Blazor/Traces/BarLib/Legendgrouptitle.cs | 2 +- .../Traces/BarLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/BarLib/Marker.cs | 2 +- Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../BarLib/MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../BarLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../BarLib/MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../BarLib/MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../BarLib/MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/BarLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../BarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../BarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../BarLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../BarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../BarLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/MarkerLib/Line.cs | 2 +- Plotly.Blazor/Traces/BarLib/MarkerLib/Pattern.cs | 2 +- .../BarLib/MarkerLib/PatternLib/FillModeEnum.cs | 2 +- .../BarLib/MarkerLib/PatternLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/OrientationEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/OutsideTextFont.cs | 2 +- Plotly.Blazor/Traces/BarLib/Selected.cs | 2 +- Plotly.Blazor/Traces/BarLib/SelectedLib/Marker.cs | 2 +- .../Traces/BarLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/BarLib/Stream.cs | 2 +- Plotly.Blazor/Traces/BarLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/BarLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/Unselected.cs | 2 +- .../Traces/BarLib/UnselectedLib/Marker.cs | 2 +- .../Traces/BarLib/UnselectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/BarLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/XCalendarEnum.cs | 2 +- .../Traces/BarLib/XPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/BarLib/YCalendarEnum.cs | 2 +- .../Traces/BarLib/YPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/BarPolar.cs | 2 +- Plotly.Blazor/Traces/BarPolarLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/BarPolarLib/HoverLabel.cs | 2 +- .../Traces/BarPolarLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/BarPolarLib/HoverLabelLib/Font.cs | 2 +- .../Traces/BarPolarLib/Legendgrouptitle.cs | 2 +- .../Traces/BarPolarLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/BarPolarLib/Marker.cs | 2 +- .../Traces/BarPolarLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../BarPolarLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../BarPolarLib/MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../BarPolarLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../BarPolarLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../BarPolarLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/BarPolarLib/MarkerLib/Line.cs | 2 +- .../Traces/BarPolarLib/MarkerLib/Pattern.cs | 2 +- .../MarkerLib/PatternLib/FillModeEnum.cs | 2 +- .../BarPolarLib/MarkerLib/PatternLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/BarPolarLib/Selected.cs | 2 +- .../Traces/BarPolarLib/SelectedLib/Marker.cs | 2 +- .../Traces/BarPolarLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/BarPolarLib/Stream.cs | 2 +- Plotly.Blazor/Traces/BarPolarLib/ThetaUnitEnum.cs | 2 +- Plotly.Blazor/Traces/BarPolarLib/Unselected.cs | 2 +- .../Traces/BarPolarLib/UnselectedLib/Marker.cs | 2 +- .../Traces/BarPolarLib/UnselectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/BarPolarLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Box.cs | 2 +- Plotly.Blazor/Traces/BoxLib/BoxMeanEnum.cs | 2 +- Plotly.Blazor/Traces/BoxLib/BoxPointsEnum.cs | 2 +- Plotly.Blazor/Traces/BoxLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/BoxLib/HoverLabel.cs | 2 +- .../Traces/BoxLib/HoverLabelLib/AlignEnum.cs | 2 +- Plotly.Blazor/Traces/BoxLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/BoxLib/HoverOnFlag.cs | 2 +- Plotly.Blazor/Traces/BoxLib/Legendgrouptitle.cs | 2 +- .../Traces/BoxLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/BoxLib/Line.cs | 2 +- Plotly.Blazor/Traces/BoxLib/Marker.cs | 2 +- Plotly.Blazor/Traces/BoxLib/MarkerLib/Line.cs | 2 +- .../Traces/BoxLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/BoxLib/OrientationEnum.cs | 2 +- Plotly.Blazor/Traces/BoxLib/QuartileMethodEnum.cs | 2 +- Plotly.Blazor/Traces/BoxLib/Selected.cs | 2 +- Plotly.Blazor/Traces/BoxLib/SelectedLib/Marker.cs | 2 +- Plotly.Blazor/Traces/BoxLib/SizeModeEnum.cs | 2 +- Plotly.Blazor/Traces/BoxLib/Stream.cs | 2 +- Plotly.Blazor/Traces/BoxLib/Unselected.cs | 2 +- .../Traces/BoxLib/UnselectedLib/Marker.cs | 2 +- Plotly.Blazor/Traces/BoxLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/BoxLib/XCalendarEnum.cs | 2 +- .../Traces/BoxLib/XPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/BoxLib/YCalendarEnum.cs | 2 +- .../Traces/BoxLib/YPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/Candlestick.cs | 2 +- Plotly.Blazor/Traces/CandlestickLib/Decreasing.cs | 2 +- .../Traces/CandlestickLib/DecreasingLib/Line.cs | 2 +- .../Traces/CandlestickLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/CandlestickLib/HoverLabel.cs | 2 +- .../CandlestickLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/CandlestickLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/CandlestickLib/Increasing.cs | 2 +- .../Traces/CandlestickLib/IncreasingLib/Line.cs | 2 +- .../Traces/CandlestickLib/Legendgrouptitle.cs | 2 +- .../CandlestickLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/CandlestickLib/Line.cs | 2 +- Plotly.Blazor/Traces/CandlestickLib/Stream.cs | 2 +- Plotly.Blazor/Traces/CandlestickLib/VisibleEnum.cs | 2 +- .../Traces/CandlestickLib/XCalendarEnum.cs | 2 +- .../Traces/CandlestickLib/XPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/Carpet.cs | 2 +- Plotly.Blazor/Traces/CarpetLib/AAxis.cs | 2 +- .../Traces/CarpetLib/AAxisLib/AutoRangeEnum.cs | 2 +- .../CarpetLib/AAxisLib/AutoTypeNumbersEnum.cs | 2 +- .../Traces/CarpetLib/AAxisLib/CategoryOrderEnum.cs | 2 +- .../Traces/CarpetLib/AAxisLib/CheaterTypeEnum.cs | 2 +- .../CarpetLib/AAxisLib/ExponentFormatEnum.cs | 2 +- .../Traces/CarpetLib/AAxisLib/RangeModeEnum.cs | 2 +- .../Traces/CarpetLib/AAxisLib/ShowExponentEnum.cs | 2 +- .../CarpetLib/AAxisLib/ShowTickLabelsEnum.cs | 2 +- .../CarpetLib/AAxisLib/ShowTickPrefixEnum.cs | 2 +- .../CarpetLib/AAxisLib/ShowTickSuffixEnum.cs | 2 +- .../Traces/CarpetLib/AAxisLib/TickFont.cs | 2 +- .../Traces/CarpetLib/AAxisLib/TickFormatStop.cs | 2 +- .../Traces/CarpetLib/AAxisLib/TickModeEnum.cs | 2 +- Plotly.Blazor/Traces/CarpetLib/AAxisLib/Title.cs | 2 +- .../Traces/CarpetLib/AAxisLib/TitleLib/Font.cs | 2 +- .../Traces/CarpetLib/AAxisLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/CarpetLib/BAxis.cs | 2 +- .../Traces/CarpetLib/BAxisLib/AutoRangeEnum.cs | 2 +- .../CarpetLib/BAxisLib/AutoTypeNumbersEnum.cs | 2 +- .../Traces/CarpetLib/BAxisLib/CategoryOrderEnum.cs | 2 +- .../Traces/CarpetLib/BAxisLib/CheaterTypeEnum.cs | 2 +- .../CarpetLib/BAxisLib/ExponentFormatEnum.cs | 2 +- .../Traces/CarpetLib/BAxisLib/RangeModeEnum.cs | 2 +- .../Traces/CarpetLib/BAxisLib/ShowExponentEnum.cs | 2 +- .../CarpetLib/BAxisLib/ShowTickLabelsEnum.cs | 2 +- .../CarpetLib/BAxisLib/ShowTickPrefixEnum.cs | 2 +- .../CarpetLib/BAxisLib/ShowTickSuffixEnum.cs | 2 +- .../Traces/CarpetLib/BAxisLib/TickFont.cs | 2 +- .../Traces/CarpetLib/BAxisLib/TickFormatStop.cs | 2 +- .../Traces/CarpetLib/BAxisLib/TickModeEnum.cs | 2 +- Plotly.Blazor/Traces/CarpetLib/BAxisLib/Title.cs | 2 +- .../Traces/CarpetLib/BAxisLib/TitleLib/Font.cs | 2 +- .../Traces/CarpetLib/BAxisLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/CarpetLib/Font.cs | 2 +- Plotly.Blazor/Traces/CarpetLib/Legendgrouptitle.cs | 2 +- .../Traces/CarpetLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/CarpetLib/Stream.cs | 2 +- Plotly.Blazor/Traces/CarpetLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Choropleth.cs | 2 +- Plotly.Blazor/Traces/ChoroplethLib/ColorBar.cs | 2 +- .../ColorBarLib/ExponentFormatEnum.cs | 2 +- .../ChoroplethLib/ColorBarLib/LenModeEnum.cs | 2 +- .../ChoroplethLib/ColorBarLib/OrientationEnum.cs | 2 +- .../ChoroplethLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../ChoroplethLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/ChoroplethLib/ColorBarLib/TickFont.cs | 2 +- .../ChoroplethLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../ChoroplethLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/ChoroplethLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/ChoroplethLib/ColorBarLib/Title.cs | 2 +- .../ChoroplethLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../ChoroplethLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../ChoroplethLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/ChoroplethLib/ColorBarLib/XRefEnum.cs | 2 +- .../ChoroplethLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/ChoroplethLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ChoroplethLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ChoroplethLib/HoverLabel.cs | 2 +- .../ChoroplethLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ChoroplethLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ChoroplethLib/Legendgrouptitle.cs | 2 +- .../ChoroplethLib/LegendgrouptitleLib/Font.cs | 2 +- .../Traces/ChoroplethLib/LocationModeEnum.cs | 2 +- Plotly.Blazor/Traces/ChoroplethLib/Marker.cs | 2 +- .../Traces/ChoroplethLib/MarkerLib/Line.cs | 2 +- Plotly.Blazor/Traces/ChoroplethLib/Selected.cs | 2 +- .../Traces/ChoroplethLib/SelectedLib/Marker.cs | 2 +- Plotly.Blazor/Traces/ChoroplethLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ChoroplethLib/Unselected.cs | 2 +- .../Traces/ChoroplethLib/UnselectedLib/Marker.cs | 2 +- Plotly.Blazor/Traces/ChoroplethLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ChoroplethMapBox.cs | 2 +- .../Traces/ChoroplethMapBoxLib/ColorBar.cs | 2 +- .../ColorBarLib/ExponentFormatEnum.cs | 2 +- .../ChoroplethMapBoxLib/ColorBarLib/LenModeEnum.cs | 2 +- .../ColorBarLib/OrientationEnum.cs | 2 +- .../ColorBarLib/ShowExponentEnum.cs | 2 +- .../ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../ColorBarLib/ThicknessModeEnum.cs | 2 +- .../ChoroplethMapBoxLib/ColorBarLib/TickFont.cs | 2 +- .../ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../ColorBarLib/TickModeEnum.cs | 2 +- .../ChoroplethMapBoxLib/ColorBarLib/TicksEnum.cs | 2 +- .../ChoroplethMapBoxLib/ColorBarLib/Title.cs | 2 +- .../ColorBarLib/TitleLib/Font.cs | 2 +- .../ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../ChoroplethMapBoxLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../ChoroplethMapBoxLib/ColorBarLib/XRefEnum.cs | 2 +- .../ChoroplethMapBoxLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../ChoroplethMapBoxLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ChoroplethMapBoxLib/HoverInfoFlag.cs | 2 +- .../Traces/ChoroplethMapBoxLib/HoverLabel.cs | 2 +- .../ChoroplethMapBoxLib/HoverLabelLib/AlignEnum.cs | 2 +- .../ChoroplethMapBoxLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ChoroplethMapBoxLib/Legendgrouptitle.cs | 2 +- .../LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ChoroplethMapBoxLib/Marker.cs | 2 +- .../Traces/ChoroplethMapBoxLib/MarkerLib/Line.cs | 2 +- .../Traces/ChoroplethMapBoxLib/Selected.cs | 2 +- .../ChoroplethMapBoxLib/SelectedLib/Marker.cs | 2 +- Plotly.Blazor/Traces/ChoroplethMapBoxLib/Stream.cs | 2 +- .../Traces/ChoroplethMapBoxLib/Unselected.cs | 2 +- .../ChoroplethMapBoxLib/UnselectedLib/Marker.cs | 2 +- .../Traces/ChoroplethMapBoxLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Cone.cs | 2 +- Plotly.Blazor/Traces/ConeLib/AnchorEnum.cs | 2 +- Plotly.Blazor/Traces/ConeLib/ColorBar.cs | 2 +- .../ConeLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../Traces/ConeLib/ColorBarLib/LenModeEnum.cs | 2 +- .../Traces/ConeLib/ColorBarLib/OrientationEnum.cs | 2 +- .../Traces/ConeLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../ConeLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ConeLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../ConeLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/ConeLib/ColorBarLib/TickFont.cs | 2 +- .../Traces/ConeLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ConeLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ConeLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../Traces/ConeLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/ConeLib/ColorBarLib/TicksEnum.cs | 2 +- Plotly.Blazor/Traces/ConeLib/ColorBarLib/Title.cs | 2 +- .../Traces/ConeLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../ConeLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../Traces/ConeLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/ConeLib/ColorBarLib/XRefEnum.cs | 2 +- .../Traces/ConeLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/ConeLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/ConeLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ConeLib/HoverLabel.cs | 2 +- .../Traces/ConeLib/HoverLabelLib/AlignEnum.cs | 2 +- Plotly.Blazor/Traces/ConeLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/ConeLib/Legendgrouptitle.cs | 2 +- .../Traces/ConeLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ConeLib/LightPosition.cs | 2 +- Plotly.Blazor/Traces/ConeLib/Lighting.cs | 2 +- Plotly.Blazor/Traces/ConeLib/SizeModeEnum.cs | 2 +- Plotly.Blazor/Traces/ConeLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ConeLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Contour.cs | 2 +- Plotly.Blazor/Traces/ContourCarpet.cs | 2 +- Plotly.Blazor/Traces/ContourCarpetLib/ATypeEnum.cs | 2 +- Plotly.Blazor/Traces/ContourCarpetLib/BTypeEnum.cs | 2 +- Plotly.Blazor/Traces/ContourCarpetLib/ColorBar.cs | 2 +- .../ColorBarLib/ExponentFormatEnum.cs | 2 +- .../ContourCarpetLib/ColorBarLib/LenModeEnum.cs | 2 +- .../ColorBarLib/OrientationEnum.cs | 2 +- .../ColorBarLib/ShowExponentEnum.cs | 2 +- .../ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../ColorBarLib/ThicknessModeEnum.cs | 2 +- .../ContourCarpetLib/ColorBarLib/TickFont.cs | 2 +- .../ContourCarpetLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../ContourCarpetLib/ColorBarLib/TickModeEnum.cs | 2 +- .../ContourCarpetLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/ContourCarpetLib/ColorBarLib/Title.cs | 2 +- .../ContourCarpetLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../ContourCarpetLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../ContourCarpetLib/ColorBarLib/XRefEnum.cs | 2 +- .../ContourCarpetLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../ContourCarpetLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/ContourCarpetLib/Contours.cs | 2 +- .../ContourCarpetLib/ContoursLib/ColoringEnum.cs | 2 +- .../ContourCarpetLib/ContoursLib/LabelFont.cs | 2 +- .../ContourCarpetLib/ContoursLib/OperationEnum.cs | 2 +- .../ContourCarpetLib/ContoursLib/TypeEnum.cs | 2 +- .../Traces/ContourCarpetLib/Legendgrouptitle.cs | 2 +- .../ContourCarpetLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ContourCarpetLib/Line.cs | 2 +- Plotly.Blazor/Traces/ContourCarpetLib/Stream.cs | 2 +- .../Traces/ContourCarpetLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ContourLib/ColorBar.cs | 2 +- .../ContourLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../Traces/ContourLib/ColorBarLib/LenModeEnum.cs | 2 +- .../ContourLib/ColorBarLib/OrientationEnum.cs | 2 +- .../ContourLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../ContourLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ContourLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../ContourLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/ContourLib/ColorBarLib/TickFont.cs | 2 +- .../ContourLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../Traces/ContourLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/ContourLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/ContourLib/ColorBarLib/Title.cs | 2 +- .../Traces/ContourLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../ContourLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../Traces/ContourLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/ContourLib/ColorBarLib/XRefEnum.cs | 2 +- .../Traces/ContourLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/ContourLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/ContourLib/Contours.cs | 2 +- .../Traces/ContourLib/ContoursLib/ColoringEnum.cs | 2 +- .../Traces/ContourLib/ContoursLib/LabelFont.cs | 2 +- .../Traces/ContourLib/ContoursLib/OperationEnum.cs | 2 +- .../Traces/ContourLib/ContoursLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/ContourLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ContourLib/HoverLabel.cs | 2 +- .../Traces/ContourLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ContourLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ContourLib/Legendgrouptitle.cs | 2 +- .../Traces/ContourLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ContourLib/Line.cs | 2 +- Plotly.Blazor/Traces/ContourLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ContourLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ContourLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ContourLib/XCalendarEnum.cs | 2 +- .../Traces/ContourLib/XPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/ContourLib/XTypeEnum.cs | 2 +- Plotly.Blazor/Traces/ContourLib/YCalendarEnum.cs | 2 +- .../Traces/ContourLib/YPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/ContourLib/YTypeEnum.cs | 2 +- Plotly.Blazor/Traces/DensityMapBox.cs | 2 +- Plotly.Blazor/Traces/DensityMapBoxLib/ColorBar.cs | 2 +- .../ColorBarLib/ExponentFormatEnum.cs | 2 +- .../DensityMapBoxLib/ColorBarLib/LenModeEnum.cs | 2 +- .../ColorBarLib/OrientationEnum.cs | 2 +- .../ColorBarLib/ShowExponentEnum.cs | 2 +- .../ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../ColorBarLib/ThicknessModeEnum.cs | 2 +- .../DensityMapBoxLib/ColorBarLib/TickFont.cs | 2 +- .../DensityMapBoxLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../DensityMapBoxLib/ColorBarLib/TickModeEnum.cs | 2 +- .../DensityMapBoxLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/DensityMapBoxLib/ColorBarLib/Title.cs | 2 +- .../DensityMapBoxLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../DensityMapBoxLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../DensityMapBoxLib/ColorBarLib/XRefEnum.cs | 2 +- .../DensityMapBoxLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../DensityMapBoxLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/DensityMapBoxLib/HoverInfoFlag.cs | 2 +- .../Traces/DensityMapBoxLib/HoverLabel.cs | 2 +- .../DensityMapBoxLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/DensityMapBoxLib/HoverLabelLib/Font.cs | 2 +- .../Traces/DensityMapBoxLib/Legendgrouptitle.cs | 2 +- .../DensityMapBoxLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/DensityMapBoxLib/Stream.cs | 2 +- .../Traces/DensityMapBoxLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Funnel.cs | 2 +- Plotly.Blazor/Traces/FunnelArea.cs | 2 +- Plotly.Blazor/Traces/FunnelAreaLib/Domain.cs | 2 +- .../Traces/FunnelAreaLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/FunnelAreaLib/HoverLabel.cs | 2 +- .../FunnelAreaLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/FunnelAreaLib/HoverLabelLib/Font.cs | 2 +- .../Traces/FunnelAreaLib/InsideTextFont.cs | 2 +- .../Traces/FunnelAreaLib/Legendgrouptitle.cs | 2 +- .../FunnelAreaLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/FunnelAreaLib/Marker.cs | 2 +- .../Traces/FunnelAreaLib/MarkerLib/Line.cs | 2 +- .../Traces/FunnelAreaLib/MarkerLib/Pattern.cs | 2 +- .../MarkerLib/PatternLib/FillModeEnum.cs | 2 +- .../MarkerLib/PatternLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/FunnelAreaLib/Stream.cs | 2 +- Plotly.Blazor/Traces/FunnelAreaLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/FunnelAreaLib/TextInfoFlag.cs | 2 +- .../Traces/FunnelAreaLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/FunnelAreaLib/Title.cs | 2 +- .../Traces/FunnelAreaLib/TitleLib/Font.cs | 2 +- .../Traces/FunnelAreaLib/TitleLib/PositionEnum.cs | 2 +- Plotly.Blazor/Traces/FunnelAreaLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/Connector.cs | 2 +- .../Traces/FunnelLib/ConnectorLib/Line.cs | 2 +- .../Traces/FunnelLib/ConstrainTextEnum.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/HoverLabel.cs | 2 +- .../Traces/FunnelLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/FunnelLib/HoverLabelLib/Font.cs | 2 +- .../Traces/FunnelLib/InsideTextAnchorEnum.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/InsideTextFont.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/Legendgrouptitle.cs | 2 +- .../Traces/FunnelLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/Marker.cs | 2 +- .../Traces/FunnelLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../FunnelLib/MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../FunnelLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../FunnelLib/MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../FunnelLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../FunnelLib/MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../FunnelLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../FunnelLib/MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../FunnelLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/MarkerLib/Line.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/OrientationEnum.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/OutsideTextFont.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/Stream.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/TextInfoFlag.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/FunnelLib/VisibleEnum.cs | 2 +- .../Traces/FunnelLib/XPeriodAlignmentEnum.cs | 2 +- .../Traces/FunnelLib/YPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMap.cs | 2 +- Plotly.Blazor/Traces/HeatMapGl.cs | 2 +- Plotly.Blazor/Traces/HeatMapGlLib/ColorBar.cs | 2 +- .../HeatMapGlLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../Traces/HeatMapGlLib/ColorBarLib/LenModeEnum.cs | 2 +- .../HeatMapGlLib/ColorBarLib/OrientationEnum.cs | 2 +- .../HeatMapGlLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../HeatMapGlLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../HeatMapGlLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../HeatMapGlLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/HeatMapGlLib/ColorBarLib/TickFont.cs | 2 +- .../HeatMapGlLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../HeatMapGlLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/HeatMapGlLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/HeatMapGlLib/ColorBarLib/Title.cs | 2 +- .../HeatMapGlLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../HeatMapGlLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../Traces/HeatMapGlLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/HeatMapGlLib/ColorBarLib/XRefEnum.cs | 2 +- .../Traces/HeatMapGlLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/HeatMapGlLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapGlLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/HeatMapGlLib/HoverLabel.cs | 2 +- .../Traces/HeatMapGlLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/HeatMapGlLib/HoverLabelLib/Font.cs | 2 +- .../Traces/HeatMapGlLib/Legendgrouptitle.cs | 2 +- .../HeatMapGlLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/HeatMapGlLib/Stream.cs | 2 +- Plotly.Blazor/Traces/HeatMapGlLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapGlLib/XTypeEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapGlLib/YTypeEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapGlLib/ZSmoothEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/ColorBar.cs | 2 +- .../HeatMapLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../Traces/HeatMapLib/ColorBarLib/LenModeEnum.cs | 2 +- .../HeatMapLib/ColorBarLib/OrientationEnum.cs | 2 +- .../HeatMapLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../HeatMapLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../HeatMapLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../HeatMapLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/HeatMapLib/ColorBarLib/TickFont.cs | 2 +- .../HeatMapLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../Traces/HeatMapLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/HeatMapLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/HeatMapLib/ColorBarLib/Title.cs | 2 +- .../Traces/HeatMapLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../HeatMapLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../Traces/HeatMapLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/HeatMapLib/ColorBarLib/XRefEnum.cs | 2 +- .../Traces/HeatMapLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/HeatMapLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/HoverLabel.cs | 2 +- .../Traces/HeatMapLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/HeatMapLib/HoverLabelLib/Font.cs | 2 +- .../Traces/HeatMapLib/Legendgrouptitle.cs | 2 +- .../Traces/HeatMapLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/Stream.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/XCalendarEnum.cs | 2 +- .../Traces/HeatMapLib/XPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/XTypeEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/YCalendarEnum.cs | 2 +- .../Traces/HeatMapLib/YPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/YTypeEnum.cs | 2 +- Plotly.Blazor/Traces/HeatMapLib/ZSmoothEnum.cs | 2 +- Plotly.Blazor/Traces/Histogram.cs | 2 +- Plotly.Blazor/Traces/Histogram2D.cs | 2 +- Plotly.Blazor/Traces/Histogram2DContour.cs | 2 +- .../Traces/Histogram2DContourLib/ColorBar.cs | 2 +- .../ColorBarLib/ExponentFormatEnum.cs | 2 +- .../ColorBarLib/LenModeEnum.cs | 2 +- .../ColorBarLib/OrientationEnum.cs | 2 +- .../ColorBarLib/ShowExponentEnum.cs | 2 +- .../ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Histogram2DContourLib/ColorBarLib/TickFont.cs | 2 +- .../ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../ColorBarLib/TickModeEnum.cs | 2 +- .../Histogram2DContourLib/ColorBarLib/TicksEnum.cs | 2 +- .../Histogram2DContourLib/ColorBarLib/Title.cs | 2 +- .../ColorBarLib/TitleLib/Font.cs | 2 +- .../ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../ColorBarLib/XAnchorEnum.cs | 2 +- .../Histogram2DContourLib/ColorBarLib/XRefEnum.cs | 2 +- .../ColorBarLib/YAnchorEnum.cs | 2 +- .../Histogram2DContourLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/Histogram2DContourLib/Contours.cs | 2 +- .../ContoursLib/ColoringEnum.cs | 2 +- .../Histogram2DContourLib/ContoursLib/LabelFont.cs | 2 +- .../ContoursLib/OperationEnum.cs | 2 +- .../Histogram2DContourLib/ContoursLib/TypeEnum.cs | 2 +- .../Traces/Histogram2DContourLib/HistFuncEnum.cs | 2 +- .../Traces/Histogram2DContourLib/HistNormEnum.cs | 2 +- .../Traces/Histogram2DContourLib/HoverInfoFlag.cs | 2 +- .../Traces/Histogram2DContourLib/HoverLabel.cs | 2 +- .../HoverLabelLib/AlignEnum.cs | 2 +- .../Histogram2DContourLib/HoverLabelLib/Font.cs | 2 +- .../Histogram2DContourLib/Legendgrouptitle.cs | 2 +- .../LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/Histogram2DContourLib/Line.cs | 2 +- .../Traces/Histogram2DContourLib/Marker.cs | 2 +- .../Traces/Histogram2DContourLib/Stream.cs | 2 +- .../Traces/Histogram2DContourLib/TextFont.cs | 2 +- .../Traces/Histogram2DContourLib/VisibleEnum.cs | 2 +- .../Traces/Histogram2DContourLib/XBins.cs | 2 +- .../Traces/Histogram2DContourLib/XCalendarEnum.cs | 2 +- .../Traces/Histogram2DContourLib/YBins.cs | 2 +- .../Traces/Histogram2DContourLib/YCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/Histogram2DLib/ColorBar.cs | 2 +- .../ColorBarLib/ExponentFormatEnum.cs | 2 +- .../Histogram2DLib/ColorBarLib/LenModeEnum.cs | 2 +- .../Histogram2DLib/ColorBarLib/OrientationEnum.cs | 2 +- .../Histogram2DLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/Histogram2DLib/ColorBarLib/TickFont.cs | 2 +- .../Histogram2DLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../Histogram2DLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/Histogram2DLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/Histogram2DLib/ColorBarLib/Title.cs | 2 +- .../Histogram2DLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../Histogram2DLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/Histogram2DLib/ColorBarLib/XRefEnum.cs | 2 +- .../Histogram2DLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/Histogram2DLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/Histogram2DLib/HistFuncEnum.cs | 2 +- .../Traces/Histogram2DLib/HistNormEnum.cs | 2 +- .../Traces/Histogram2DLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/Histogram2DLib/HoverLabel.cs | 2 +- .../Histogram2DLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/Histogram2DLib/HoverLabelLib/Font.cs | 2 +- .../Traces/Histogram2DLib/Legendgrouptitle.cs | 2 +- .../Histogram2DLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/Histogram2DLib/Marker.cs | 2 +- Plotly.Blazor/Traces/Histogram2DLib/Stream.cs | 2 +- Plotly.Blazor/Traces/Histogram2DLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/Histogram2DLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Histogram2DLib/XBins.cs | 2 +- .../Traces/Histogram2DLib/XCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/Histogram2DLib/YBins.cs | 2 +- .../Traces/Histogram2DLib/YCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/Histogram2DLib/ZSmoothEnum.cs | 2 +- .../Traces/HistogramLib/ConstrainTextEnum.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/Cumulative.cs | 2 +- .../HistogramLib/CumulativeLib/CurrentBinEnum.cs | 2 +- .../HistogramLib/CumulativeLib/DirectionEnum.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/ErrorX.cs | 2 +- .../Traces/HistogramLib/ErrorXLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/ErrorY.cs | 2 +- .../Traces/HistogramLib/ErrorYLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/HistFuncEnum.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/HistNormEnum.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/HoverLabel.cs | 2 +- .../Traces/HistogramLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/HistogramLib/HoverLabelLib/Font.cs | 2 +- .../Traces/HistogramLib/InsideTextAnchorEnum.cs | 2 +- .../Traces/HistogramLib/InsideTextFont.cs | 2 +- .../Traces/HistogramLib/Legendgrouptitle.cs | 2 +- .../HistogramLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/Marker.cs | 2 +- .../Traces/HistogramLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../HistogramLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../HistogramLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../HistogramLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../HistogramLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/HistogramLib/MarkerLib/Line.cs | 2 +- .../Traces/HistogramLib/MarkerLib/Pattern.cs | 2 +- .../MarkerLib/PatternLib/FillModeEnum.cs | 2 +- .../HistogramLib/MarkerLib/PatternLib/ShapeEnum.cs | 2 +- .../Traces/HistogramLib/OrientationEnum.cs | 2 +- .../Traces/HistogramLib/OutsideTextFont.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/Selected.cs | 2 +- .../Traces/HistogramLib/SelectedLib/Marker.cs | 2 +- .../Traces/HistogramLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/Stream.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/TextFont.cs | 2 +- .../Traces/HistogramLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/Unselected.cs | 2 +- .../Traces/HistogramLib/UnselectedLib/Marker.cs | 2 +- .../Traces/HistogramLib/UnselectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/XBins.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/XCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/YBins.cs | 2 +- Plotly.Blazor/Traces/HistogramLib/YCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/Icicle.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/BranchValuesEnum.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/CountFlag.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/Domain.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/HoverLabel.cs | 2 +- .../Traces/IcicleLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/IcicleLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/InsideTextFont.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/Leaf.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/Legendgrouptitle.cs | 2 +- .../Traces/IcicleLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/Marker.cs | 2 +- .../Traces/IcicleLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../IcicleLib/MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../IcicleLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../IcicleLib/MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../IcicleLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../IcicleLib/MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../IcicleLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../IcicleLib/MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../IcicleLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/MarkerLib/Line.cs | 2 +- .../Traces/IcicleLib/MarkerLib/Pattern.cs | 2 +- .../IcicleLib/MarkerLib/PatternLib/FillModeEnum.cs | 2 +- .../IcicleLib/MarkerLib/PatternLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/OutsideTextFont.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/PathBar.cs | 2 +- .../Traces/IcicleLib/PathBarLib/EdgeShapeEnum.cs | 2 +- .../Traces/IcicleLib/PathBarLib/SideEnum.cs | 2 +- .../Traces/IcicleLib/PathBarLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/Root.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/Stream.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/TextInfoFlag.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/Tiling.cs | 2 +- .../Traces/IcicleLib/TilingLib/FlipFlag.cs | 2 +- .../Traces/IcicleLib/TilingLib/OrientationEnum.cs | 2 +- Plotly.Blazor/Traces/IcicleLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Image.cs | 2 +- Plotly.Blazor/Traces/ImageLib/ColorModelEnum.cs | 2 +- Plotly.Blazor/Traces/ImageLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ImageLib/HoverLabel.cs | 2 +- .../Traces/ImageLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ImageLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/ImageLib/Legendgrouptitle.cs | 2 +- .../Traces/ImageLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ImageLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ImageLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ImageLib/ZSmoothEnum.cs | 2 +- Plotly.Blazor/Traces/Indicator.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/AlignEnum.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/Delta.cs | 2 +- .../Traces/IndicatorLib/DeltaLib/Decreasing.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Font.cs | 2 +- .../Traces/IndicatorLib/DeltaLib/Increasing.cs | 2 +- .../Traces/IndicatorLib/DeltaLib/PositionEnum.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/Domain.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/Gauge.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Axis.cs | 2 +- .../GaugeLib/AxisLib/ExponentFormatEnum.cs | 2 +- .../GaugeLib/AxisLib/ShowExponentEnum.cs | 2 +- .../GaugeLib/AxisLib/ShowTickPrefixEnum.cs | 2 +- .../GaugeLib/AxisLib/ShowTickSuffixEnum.cs | 2 +- .../IndicatorLib/GaugeLib/AxisLib/TickFont.cs | 2 +- .../GaugeLib/AxisLib/TickFormatStop.cs | 2 +- .../IndicatorLib/GaugeLib/AxisLib/TickModeEnum.cs | 2 +- .../IndicatorLib/GaugeLib/AxisLib/TicksEnum.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Bar.cs | 2 +- .../Traces/IndicatorLib/GaugeLib/BarLib/Line.cs | 2 +- .../Traces/IndicatorLib/GaugeLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Step.cs | 2 +- .../Traces/IndicatorLib/GaugeLib/StepLib/Line.cs | 2 +- .../Traces/IndicatorLib/GaugeLib/Threshold.cs | 2 +- .../IndicatorLib/GaugeLib/ThresholdLib/Line.cs | 2 +- .../Traces/IndicatorLib/Legendgrouptitle.cs | 2 +- .../IndicatorLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/Number.cs | 2 +- .../Traces/IndicatorLib/NumberLib/Font.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/Stream.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/Title.cs | 2 +- .../Traces/IndicatorLib/TitleLib/AlignEnum.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/TitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/IndicatorLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/IsoSurface.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/Caps.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/X.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/Y.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/Z.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/ColorBar.cs | 2 +- .../ColorBarLib/ExponentFormatEnum.cs | 2 +- .../IsoSurfaceLib/ColorBarLib/LenModeEnum.cs | 2 +- .../IsoSurfaceLib/ColorBarLib/OrientationEnum.cs | 2 +- .../IsoSurfaceLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../IsoSurfaceLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/IsoSurfaceLib/ColorBarLib/TickFont.cs | 2 +- .../IsoSurfaceLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../IsoSurfaceLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/IsoSurfaceLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/IsoSurfaceLib/ColorBarLib/Title.cs | 2 +- .../IsoSurfaceLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../IsoSurfaceLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../IsoSurfaceLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/IsoSurfaceLib/ColorBarLib/XRefEnum.cs | 2 +- .../IsoSurfaceLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/IsoSurfaceLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/Contour.cs | 2 +- .../Traces/IsoSurfaceLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabel.cs | 2 +- .../IsoSurfaceLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/IsoSurfaceLib/HoverLabelLib/Font.cs | 2 +- .../Traces/IsoSurfaceLib/Legendgrouptitle.cs | 2 +- .../IsoSurfaceLib/LegendgrouptitleLib/Font.cs | 2 +- .../Traces/IsoSurfaceLib/LightPosition.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/Lighting.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/Slices.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/X.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/Y.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/Z.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/SpaceFrame.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/Stream.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/Surface.cs | 2 +- .../Traces/IsoSurfaceLib/SurfaceLib/PatternFlag.cs | 2 +- Plotly.Blazor/Traces/IsoSurfaceLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Mesh3D.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/ColorBar.cs | 2 +- .../Mesh3DLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/LenModeEnum.cs | 2 +- .../Mesh3DLib/ColorBarLib/OrientationEnum.cs | 2 +- .../Mesh3DLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../Mesh3DLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../Mesh3DLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../Mesh3DLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/TickFont.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/TickFormatStop.cs | 2 +- .../Mesh3DLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../Mesh3DLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/Title.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../Mesh3DLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/XRefEnum.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/Mesh3DLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/Contour.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/DelaunaYAxisEnum.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/HoverLabel.cs | 2 +- .../Traces/Mesh3DLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/Mesh3DLib/HoverLabelLib/Font.cs | 2 +- .../Traces/Mesh3DLib/IntensityModeEnum.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/Legendgrouptitle.cs | 2 +- .../Traces/Mesh3DLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/LightPosition.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/Lighting.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/Stream.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/XCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/YCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/Mesh3DLib/ZCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/Ohlc.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/Decreasing.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/DecreasingLib/Line.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/HoverLabel.cs | 2 +- .../Traces/OhlcLib/HoverLabelLib/AlignEnum.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/Increasing.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/IncreasingLib/Line.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/Legendgrouptitle.cs | 2 +- .../Traces/OhlcLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/Line.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/Stream.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/OhlcLib/XCalendarEnum.cs | 2 +- .../Traces/OhlcLib/XPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/ParCats.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/ArrangementEnum.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/Dimension.cs | 2 +- .../ParCatsLib/DimensionLib/CategoryOrderEnum.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/Domain.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/HoverOnEnum.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/LabelFont.cs | 2 +- .../Traces/ParCatsLib/Legendgrouptitle.cs | 2 +- .../Traces/ParCatsLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/Line.cs | 2 +- .../Traces/ParCatsLib/LineLib/ColorBar.cs | 2 +- .../LineLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../ParCatsLib/LineLib/ColorBarLib/LenModeEnum.cs | 2 +- .../LineLib/ColorBarLib/OrientationEnum.cs | 2 +- .../LineLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../LineLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../LineLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../LineLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../ParCatsLib/LineLib/ColorBarLib/TickFont.cs | 2 +- .../LineLib/ColorBarLib/TickFormatStop.cs | 2 +- .../LineLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../LineLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../ParCatsLib/LineLib/ColorBarLib/TickModeEnum.cs | 2 +- .../ParCatsLib/LineLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/ParCatsLib/LineLib/ColorBarLib/Title.cs | 2 +- .../LineLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../LineLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../ParCatsLib/LineLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../ParCatsLib/LineLib/ColorBarLib/XRefEnum.cs | 2 +- .../ParCatsLib/LineLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../ParCatsLib/LineLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ParCatsLib/LineLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/SortPathsEnum.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/TickFont.cs | 2 +- Plotly.Blazor/Traces/ParCatsLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ParCoords.cs | 2 +- Plotly.Blazor/Traces/ParCoordsLib/Dimension.cs | 2 +- Plotly.Blazor/Traces/ParCoordsLib/Domain.cs | 2 +- Plotly.Blazor/Traces/ParCoordsLib/LabelFont.cs | 2 +- Plotly.Blazor/Traces/ParCoordsLib/LabelSideEnum.cs | 2 +- .../Traces/ParCoordsLib/Legendgrouptitle.cs | 2 +- .../ParCoordsLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ParCoordsLib/Line.cs | 2 +- .../Traces/ParCoordsLib/LineLib/ColorBar.cs | 2 +- .../LineLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../LineLib/ColorBarLib/LenModeEnum.cs | 2 +- .../LineLib/ColorBarLib/OrientationEnum.cs | 2 +- .../LineLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../LineLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../LineLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../LineLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../ParCoordsLib/LineLib/ColorBarLib/TickFont.cs | 2 +- .../LineLib/ColorBarLib/TickFormatStop.cs | 2 +- .../LineLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../LineLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../LineLib/ColorBarLib/TickModeEnum.cs | 2 +- .../ParCoordsLib/LineLib/ColorBarLib/TicksEnum.cs | 2 +- .../ParCoordsLib/LineLib/ColorBarLib/Title.cs | 2 +- .../LineLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../LineLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../LineLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../ParCoordsLib/LineLib/ColorBarLib/XRefEnum.cs | 2 +- .../LineLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../ParCoordsLib/LineLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/ParCoordsLib/RangeFont.cs | 2 +- Plotly.Blazor/Traces/ParCoordsLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ParCoordsLib/TickFont.cs | 2 +- Plotly.Blazor/Traces/ParCoordsLib/Unselected.cs | 2 +- .../Traces/ParCoordsLib/UnselectedLib/Line.cs | 2 +- Plotly.Blazor/Traces/ParCoordsLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Pie.cs | 2 +- Plotly.Blazor/Traces/PieLib/DirectionEnum.cs | 2 +- Plotly.Blazor/Traces/PieLib/Domain.cs | 2 +- Plotly.Blazor/Traces/PieLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/PieLib/HoverLabel.cs | 2 +- .../Traces/PieLib/HoverLabelLib/AlignEnum.cs | 2 +- Plotly.Blazor/Traces/PieLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/PieLib/InsideTextFont.cs | 2 +- .../Traces/PieLib/InsideTextOrientationEnum.cs | 2 +- Plotly.Blazor/Traces/PieLib/Legendgrouptitle.cs | 2 +- .../Traces/PieLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/PieLib/Marker.cs | 2 +- Plotly.Blazor/Traces/PieLib/MarkerLib/Line.cs | 2 +- Plotly.Blazor/Traces/PieLib/MarkerLib/Pattern.cs | 2 +- .../PieLib/MarkerLib/PatternLib/FillModeEnum.cs | 2 +- .../PieLib/MarkerLib/PatternLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/PieLib/OutsideTextFont.cs | 2 +- Plotly.Blazor/Traces/PieLib/Stream.cs | 2 +- Plotly.Blazor/Traces/PieLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/PieLib/TextInfoFlag.cs | 2 +- Plotly.Blazor/Traces/PieLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/PieLib/Title.cs | 2 +- Plotly.Blazor/Traces/PieLib/TitleLib/Font.cs | 2 +- .../Traces/PieLib/TitleLib/PositionEnum.cs | 2 +- Plotly.Blazor/Traces/PieLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/PointCloud.cs | 2 +- .../Traces/PointCloudLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/PointCloudLib/HoverLabel.cs | 2 +- .../PointCloudLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/PointCloudLib/HoverLabelLib/Font.cs | 2 +- .../Traces/PointCloudLib/Legendgrouptitle.cs | 2 +- .../PointCloudLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/PointCloudLib/Marker.cs | 2 +- .../Traces/PointCloudLib/MarkerLib/Border.cs | 2 +- Plotly.Blazor/Traces/PointCloudLib/Stream.cs | 2 +- Plotly.Blazor/Traces/PointCloudLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Sankey.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/ArrangementEnum.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/Domain.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/HoverLabel.cs | 2 +- .../Traces/SankeyLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/SankeyLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/Legendgrouptitle.cs | 2 +- .../Traces/SankeyLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/Link.cs | 2 +- .../SankeyLib/LinkLib/ConcentrationScales.cs | 2 +- .../Traces/SankeyLib/LinkLib/HoverInfoEnum.cs | 2 +- .../Traces/SankeyLib/LinkLib/HoverLabel.cs | 2 +- .../SankeyLib/LinkLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/SankeyLib/LinkLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/LinkLib/Line.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/Node.cs | 2 +- .../Traces/SankeyLib/NodeLib/HoverInfoEnum.cs | 2 +- .../Traces/SankeyLib/NodeLib/HoverLabel.cs | 2 +- .../SankeyLib/NodeLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/SankeyLib/NodeLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/NodeLib/Line.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/OrientationEnum.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/Stream.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/SankeyLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter.cs | 2 +- Plotly.Blazor/Traces/Scatter3D.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/ErrorX.cs | 2 +- .../Traces/Scatter3DLib/ErrorXLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/ErrorY.cs | 2 +- .../Traces/Scatter3DLib/ErrorYLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/ErrorZ.cs | 2 +- .../Traces/Scatter3DLib/ErrorZLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/HoverLabel.cs | 2 +- .../Traces/Scatter3DLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/Scatter3DLib/HoverLabelLib/Font.cs | 2 +- .../Traces/Scatter3DLib/Legendgrouptitle.cs | 2 +- .../Scatter3DLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/Line.cs | 2 +- .../Traces/Scatter3DLib/LineLib/ColorBar.cs | 2 +- .../LineLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../LineLib/ColorBarLib/LenModeEnum.cs | 2 +- .../LineLib/ColorBarLib/OrientationEnum.cs | 2 +- .../LineLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../LineLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../LineLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../LineLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Scatter3DLib/LineLib/ColorBarLib/TickFont.cs | 2 +- .../LineLib/ColorBarLib/TickFormatStop.cs | 2 +- .../LineLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../LineLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../LineLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Scatter3DLib/LineLib/ColorBarLib/TicksEnum.cs | 2 +- .../Scatter3DLib/LineLib/ColorBarLib/Title.cs | 2 +- .../LineLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../LineLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../LineLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Scatter3DLib/LineLib/ColorBarLib/XRefEnum.cs | 2 +- .../LineLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Scatter3DLib/LineLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/Scatter3DLib/LineLib/DashEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/Marker.cs | 2 +- .../Traces/Scatter3DLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Scatter3DLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../Scatter3DLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Scatter3DLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Scatter3DLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/Scatter3DLib/MarkerLib/Line.cs | 2 +- .../Traces/Scatter3DLib/MarkerLib/SizeModeEnum.cs | 2 +- .../Traces/Scatter3DLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/Projection.cs | 2 +- .../Traces/Scatter3DLib/ProjectionLib/X.cs | 2 +- .../Traces/Scatter3DLib/ProjectionLib/Y.cs | 2 +- .../Traces/Scatter3DLib/ProjectionLib/Z.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/Stream.cs | 2 +- .../Traces/Scatter3DLib/SurfaceAxisEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/TextFont.cs | 2 +- .../Traces/Scatter3DLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/XCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/YCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/Scatter3DLib/ZCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterCarpet.cs | 2 +- Plotly.Blazor/Traces/ScatterCarpetLib/FillEnum.cs | 2 +- .../Traces/ScatterCarpetLib/HoverInfoFlag.cs | 2 +- .../Traces/ScatterCarpetLib/HoverLabel.cs | 2 +- .../ScatterCarpetLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ScatterCarpetLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ScatterCarpetLib/HoverOnFlag.cs | 2 +- .../Traces/ScatterCarpetLib/Legendgrouptitle.cs | 2 +- .../ScatterCarpetLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ScatterCarpetLib/Line.cs | 2 +- .../Traces/ScatterCarpetLib/LineLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterCarpetLib/Marker.cs | 2 +- .../ScatterCarpetLib/MarkerLib/AngleRefEnum.cs | 2 +- .../Traces/ScatterCarpetLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ScatterCarpetLib/MarkerLib/Gradient.cs | 2 +- .../MarkerLib/GradientLib/TypeEnum.cs | 2 +- .../Traces/ScatterCarpetLib/MarkerLib/Line.cs | 2 +- .../ScatterCarpetLib/MarkerLib/SizeModeEnum.cs | 2 +- .../ScatterCarpetLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterCarpetLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterCarpetLib/Selected.cs | 2 +- .../Traces/ScatterCarpetLib/SelectedLib/Marker.cs | 2 +- .../ScatterCarpetLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterCarpetLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ScatterCarpetLib/TextFont.cs | 2 +- .../Traces/ScatterCarpetLib/TextPositionEnum.cs | 2 +- .../Traces/ScatterCarpetLib/Unselected.cs | 2 +- .../ScatterCarpetLib/UnselectedLib/Marker.cs | 2 +- .../ScatterCarpetLib/UnselectedLib/TextFont.cs | 2 +- .../Traces/ScatterCarpetLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGeo.cs | 2 +- Plotly.Blazor/Traces/ScatterGeoLib/FillEnum.cs | 2 +- .../Traces/ScatterGeoLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterGeoLib/HoverLabel.cs | 2 +- .../ScatterGeoLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ScatterGeoLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ScatterGeoLib/Legendgrouptitle.cs | 2 +- .../ScatterGeoLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ScatterGeoLib/Line.cs | 2 +- .../Traces/ScatterGeoLib/LocationModeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGeoLib/Marker.cs | 2 +- .../Traces/ScatterGeoLib/MarkerLib/AngleRefEnum.cs | 2 +- .../Traces/ScatterGeoLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../ScatterGeoLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ScatterGeoLib/MarkerLib/Gradient.cs | 2 +- .../MarkerLib/GradientLib/TypeEnum.cs | 2 +- .../Traces/ScatterGeoLib/MarkerLib/Line.cs | 2 +- .../Traces/ScatterGeoLib/MarkerLib/SizeModeEnum.cs | 2 +- .../Traces/ScatterGeoLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGeoLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterGeoLib/Selected.cs | 2 +- .../Traces/ScatterGeoLib/SelectedLib/Marker.cs | 2 +- .../Traces/ScatterGeoLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterGeoLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ScatterGeoLib/TextFont.cs | 2 +- .../Traces/ScatterGeoLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGeoLib/Unselected.cs | 2 +- .../Traces/ScatterGeoLib/UnselectedLib/Marker.cs | 2 +- .../Traces/ScatterGeoLib/UnselectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterGeoLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGl.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/ErrorX.cs | 2 +- .../Traces/ScatterGlLib/ErrorXLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/ErrorY.cs | 2 +- .../Traces/ScatterGlLib/ErrorYLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/FillEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/HoverLabel.cs | 2 +- .../Traces/ScatterGlLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ScatterGlLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ScatterGlLib/Legendgrouptitle.cs | 2 +- .../ScatterGlLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/Line.cs | 2 +- .../Traces/ScatterGlLib/LineLib/DashEnum.cs | 2 +- .../Traces/ScatterGlLib/LineLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/Marker.cs | 2 +- .../Traces/ScatterGlLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../ScatterGlLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../ScatterGlLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../ScatterGlLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../ScatterGlLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ScatterGlLib/MarkerLib/Line.cs | 2 +- .../Traces/ScatterGlLib/MarkerLib/SizeModeEnum.cs | 2 +- .../Traces/ScatterGlLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/Selected.cs | 2 +- .../Traces/ScatterGlLib/SelectedLib/Marker.cs | 2 +- .../Traces/ScatterGlLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/TextFont.cs | 2 +- .../Traces/ScatterGlLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/Unselected.cs | 2 +- .../Traces/ScatterGlLib/UnselectedLib/Marker.cs | 2 +- .../Traces/ScatterGlLib/UnselectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/XCalendarEnum.cs | 2 +- .../Traces/ScatterGlLib/XPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterGlLib/YCalendarEnum.cs | 2 +- .../Traces/ScatterGlLib/YPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/ErrorX.cs | 2 +- .../Traces/ScatterLib/ErrorXLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/ErrorY.cs | 2 +- .../Traces/ScatterLib/ErrorYLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/FillEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/FillPattern.cs | 2 +- .../ScatterLib/FillPatternLib/FillModeEnum.cs | 2 +- .../Traces/ScatterLib/FillPatternLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/GroupNormEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/HoverLabel.cs | 2 +- .../Traces/ScatterLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ScatterLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/HoverOnFlag.cs | 2 +- .../Traces/ScatterLib/Legendgrouptitle.cs | 2 +- .../Traces/ScatterLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/Line.cs | 2 +- .../Traces/ScatterLib/LineLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/Marker.cs | 2 +- .../Traces/ScatterLib/MarkerLib/AngleRefEnum.cs | 2 +- .../Traces/ScatterLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../ScatterLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../ScatterLib/MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../ScatterLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../ScatterLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../ScatterLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ScatterLib/MarkerLib/Gradient.cs | 2 +- .../ScatterLib/MarkerLib/GradientLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/MarkerLib/Line.cs | 2 +- .../Traces/ScatterLib/MarkerLib/SizeModeEnum.cs | 2 +- .../Traces/ScatterLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/OrientationEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/Selected.cs | 2 +- .../Traces/ScatterLib/SelectedLib/Marker.cs | 2 +- .../Traces/ScatterLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/StackGapsEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/TextFont.cs | 2 +- .../Traces/ScatterLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/Unselected.cs | 2 +- .../Traces/ScatterLib/UnselectedLib/Marker.cs | 2 +- .../Traces/ScatterLib/UnselectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/XCalendarEnum.cs | 2 +- .../Traces/ScatterLib/XPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterLib/YCalendarEnum.cs | 2 +- .../Traces/ScatterLib/YPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterMapBox.cs | 2 +- Plotly.Blazor/Traces/ScatterMapBoxLib/Cluster.cs | 2 +- Plotly.Blazor/Traces/ScatterMapBoxLib/FillEnum.cs | 2 +- .../Traces/ScatterMapBoxLib/HoverInfoFlag.cs | 2 +- .../Traces/ScatterMapBoxLib/HoverLabel.cs | 2 +- .../ScatterMapBoxLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ScatterMapBoxLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ScatterMapBoxLib/Legendgrouptitle.cs | 2 +- .../ScatterMapBoxLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ScatterMapBoxLib/Line.cs | 2 +- Plotly.Blazor/Traces/ScatterMapBoxLib/Marker.cs | 2 +- .../Traces/ScatterMapBoxLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../ScatterMapBoxLib/MarkerLib/SizeModeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterMapBoxLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterMapBoxLib/Selected.cs | 2 +- .../Traces/ScatterMapBoxLib/SelectedLib/Marker.cs | 2 +- Plotly.Blazor/Traces/ScatterMapBoxLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ScatterMapBoxLib/TextFont.cs | 2 +- .../Traces/ScatterMapBoxLib/TextPositionEnum.cs | 2 +- .../Traces/ScatterMapBoxLib/Unselected.cs | 2 +- .../ScatterMapBoxLib/UnselectedLib/Marker.cs | 2 +- .../Traces/ScatterMapBoxLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterPolar.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarGl.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarGlLib/FillEnum.cs | 2 +- .../Traces/ScatterPolarGlLib/HoverInfoFlag.cs | 2 +- .../Traces/ScatterPolarGlLib/HoverLabel.cs | 2 +- .../ScatterPolarGlLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ScatterPolarGlLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ScatterPolarGlLib/Legendgrouptitle.cs | 2 +- .../ScatterPolarGlLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarGlLib/Line.cs | 2 +- .../Traces/ScatterPolarGlLib/LineLib/DashEnum.cs | 2 +- .../Traces/ScatterPolarGlLib/LineLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarGlLib/Marker.cs | 2 +- .../Traces/ScatterPolarGlLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ScatterPolarGlLib/MarkerLib/Line.cs | 2 +- .../ScatterPolarGlLib/MarkerLib/SizeModeEnum.cs | 2 +- .../ScatterPolarGlLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarGlLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarGlLib/Selected.cs | 2 +- .../Traces/ScatterPolarGlLib/SelectedLib/Marker.cs | 2 +- .../ScatterPolarGlLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarGlLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarGlLib/TextFont.cs | 2 +- .../Traces/ScatterPolarGlLib/TextPositionEnum.cs | 2 +- .../Traces/ScatterPolarGlLib/ThetaUnitEnum.cs | 2 +- .../Traces/ScatterPolarGlLib/Unselected.cs | 2 +- .../ScatterPolarGlLib/UnselectedLib/Marker.cs | 2 +- .../ScatterPolarGlLib/UnselectedLib/TextFont.cs | 2 +- .../Traces/ScatterPolarGlLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarLib/FillEnum.cs | 2 +- .../Traces/ScatterPolarLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarLib/HoverLabel.cs | 2 +- .../ScatterPolarLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ScatterPolarLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ScatterPolarLib/HoverOnFlag.cs | 2 +- .../Traces/ScatterPolarLib/Legendgrouptitle.cs | 2 +- .../ScatterPolarLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarLib/Line.cs | 2 +- .../Traces/ScatterPolarLib/LineLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarLib/Marker.cs | 2 +- .../ScatterPolarLib/MarkerLib/AngleRefEnum.cs | 2 +- .../Traces/ScatterPolarLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../ScatterPolarLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ScatterPolarLib/MarkerLib/Gradient.cs | 2 +- .../MarkerLib/GradientLib/TypeEnum.cs | 2 +- .../Traces/ScatterPolarLib/MarkerLib/Line.cs | 2 +- .../ScatterPolarLib/MarkerLib/SizeModeEnum.cs | 2 +- .../Traces/ScatterPolarLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarLib/Selected.cs | 2 +- .../Traces/ScatterPolarLib/SelectedLib/Marker.cs | 2 +- .../Traces/ScatterPolarLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarLib/TextFont.cs | 2 +- .../Traces/ScatterPolarLib/TextPositionEnum.cs | 2 +- .../Traces/ScatterPolarLib/ThetaUnitEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterPolarLib/Unselected.cs | 2 +- .../Traces/ScatterPolarLib/UnselectedLib/Marker.cs | 2 +- .../ScatterPolarLib/UnselectedLib/TextFont.cs | 2 +- .../Traces/ScatterPolarLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterSmith.cs | 2 +- Plotly.Blazor/Traces/ScatterSmithLib/FillEnum.cs | 2 +- .../Traces/ScatterSmithLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterSmithLib/HoverLabel.cs | 2 +- .../ScatterSmithLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ScatterSmithLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ScatterSmithLib/HoverOnFlag.cs | 2 +- .../Traces/ScatterSmithLib/LegendGroupTitle.cs | 2 +- .../ScatterSmithLib/LegendGroupTitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ScatterSmithLib/Line.cs | 2 +- .../Traces/ScatterSmithLib/LineLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterSmithLib/Marker.cs | 2 +- .../ScatterSmithLib/MarkerLib/AngleRefEnum.cs | 2 +- .../Traces/ScatterSmithLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../ScatterSmithLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ScatterSmithLib/MarkerLib/Gradient.cs | 2 +- .../MarkerLib/GradientLib/TypeEnum.cs | 2 +- .../Traces/ScatterSmithLib/MarkerLib/Line.cs | 2 +- .../ScatterSmithLib/MarkerLib/SizeModeEnum.cs | 2 +- .../Traces/ScatterSmithLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterSmithLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterSmithLib/Selected.cs | 2 +- .../Traces/ScatterSmithLib/SelectedLib/Marker.cs | 2 +- .../Traces/ScatterSmithLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterSmithLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ScatterSmithLib/TextFont.cs | 2 +- .../Traces/ScatterSmithLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterSmithLib/Unselected.cs | 2 +- .../Traces/ScatterSmithLib/UnselectedLib/Marker.cs | 2 +- .../ScatterSmithLib/UnselectedLib/TextFont.cs | 2 +- .../Traces/ScatterSmithLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterTernary.cs | 2 +- Plotly.Blazor/Traces/ScatterTernaryLib/FillEnum.cs | 2 +- .../Traces/ScatterTernaryLib/HoverInfoFlag.cs | 2 +- .../Traces/ScatterTernaryLib/HoverLabel.cs | 2 +- .../ScatterTernaryLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ScatterTernaryLib/HoverLabelLib/Font.cs | 2 +- .../Traces/ScatterTernaryLib/HoverOnFlag.cs | 2 +- .../Traces/ScatterTernaryLib/Legendgrouptitle.cs | 2 +- .../ScatterTernaryLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ScatterTernaryLib/Line.cs | 2 +- .../Traces/ScatterTernaryLib/LineLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterTernaryLib/Marker.cs | 2 +- .../ScatterTernaryLib/MarkerLib/AngleRefEnum.cs | 2 +- .../Traces/ScatterTernaryLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/ScatterTernaryLib/MarkerLib/Gradient.cs | 2 +- .../MarkerLib/GradientLib/TypeEnum.cs | 2 +- .../Traces/ScatterTernaryLib/MarkerLib/Line.cs | 2 +- .../ScatterTernaryLib/MarkerLib/SizeModeEnum.cs | 2 +- .../ScatterTernaryLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/ScatterTernaryLib/ModeFlag.cs | 2 +- Plotly.Blazor/Traces/ScatterTernaryLib/Selected.cs | 2 +- .../Traces/ScatterTernaryLib/SelectedLib/Marker.cs | 2 +- .../ScatterTernaryLib/SelectedLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/ScatterTernaryLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ScatterTernaryLib/TextFont.cs | 2 +- .../Traces/ScatterTernaryLib/TextPositionEnum.cs | 2 +- .../Traces/ScatterTernaryLib/Unselected.cs | 2 +- .../ScatterTernaryLib/UnselectedLib/Marker.cs | 2 +- .../ScatterTernaryLib/UnselectedLib/TextFont.cs | 2 +- .../Traces/ScatterTernaryLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Splom.cs | 2 +- Plotly.Blazor/Traces/SplomLib/Diagonal.cs | 2 +- Plotly.Blazor/Traces/SplomLib/Dimension.cs | 2 +- Plotly.Blazor/Traces/SplomLib/DimensionLib/Axis.cs | 2 +- .../SplomLib/DimensionLib/AxisLib/TypeEnum.cs | 2 +- Plotly.Blazor/Traces/SplomLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/SplomLib/HoverLabel.cs | 2 +- .../Traces/SplomLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/SplomLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/SplomLib/Legendgrouptitle.cs | 2 +- .../Traces/SplomLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/SplomLib/Marker.cs | 2 +- .../Traces/SplomLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../SplomLib/MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../SplomLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../SplomLib/MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../SplomLib/MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/SplomLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../SplomLib/MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../SplomLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../SplomLib/MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../SplomLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/SplomLib/MarkerLib/Line.cs | 2 +- .../Traces/SplomLib/MarkerLib/SizeModeEnum.cs | 2 +- .../Traces/SplomLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/SplomLib/Selected.cs | 2 +- .../Traces/SplomLib/SelectedLib/Marker.cs | 2 +- Plotly.Blazor/Traces/SplomLib/Stream.cs | 2 +- Plotly.Blazor/Traces/SplomLib/Unselected.cs | 2 +- .../Traces/SplomLib/UnselectedLib/Marker.cs | 2 +- Plotly.Blazor/Traces/SplomLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/StreamTube.cs | 2 +- Plotly.Blazor/Traces/StreamTubeLib/ColorBar.cs | 2 +- .../ColorBarLib/ExponentFormatEnum.cs | 2 +- .../StreamTubeLib/ColorBarLib/LenModeEnum.cs | 2 +- .../StreamTubeLib/ColorBarLib/OrientationEnum.cs | 2 +- .../StreamTubeLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../StreamTubeLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/StreamTubeLib/ColorBarLib/TickFont.cs | 2 +- .../StreamTubeLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../StreamTubeLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/StreamTubeLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/StreamTubeLib/ColorBarLib/Title.cs | 2 +- .../StreamTubeLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../StreamTubeLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../StreamTubeLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/StreamTubeLib/ColorBarLib/XRefEnum.cs | 2 +- .../StreamTubeLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/StreamTubeLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/StreamTubeLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/StreamTubeLib/HoverLabel.cs | 2 +- .../StreamTubeLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/StreamTubeLib/HoverLabelLib/Font.cs | 2 +- .../Traces/StreamTubeLib/Legendgrouptitle.cs | 2 +- .../StreamTubeLib/LegendgrouptitleLib/Font.cs | 2 +- .../Traces/StreamTubeLib/LightPosition.cs | 2 +- Plotly.Blazor/Traces/StreamTubeLib/Lighting.cs | 2 +- Plotly.Blazor/Traces/StreamTubeLib/Starts.cs | 2 +- Plotly.Blazor/Traces/StreamTubeLib/Stream.cs | 2 +- Plotly.Blazor/Traces/StreamTubeLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Sunburst.cs | 2 +- .../Traces/SunburstLib/BranchValuesEnum.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/CountFlag.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/Domain.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/HoverLabel.cs | 2 +- .../Traces/SunburstLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/SunburstLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/InsideTextFont.cs | 2 +- .../SunburstLib/InsideTextOrientationEnum.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/Leaf.cs | 2 +- .../Traces/SunburstLib/Legendgrouptitle.cs | 2 +- .../Traces/SunburstLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/Marker.cs | 2 +- .../Traces/SunburstLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../SunburstLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../SunburstLib/MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../SunburstLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../SunburstLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../SunburstLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/MarkerLib/Line.cs | 2 +- .../Traces/SunburstLib/MarkerLib/Pattern.cs | 2 +- .../MarkerLib/PatternLib/FillModeEnum.cs | 2 +- .../SunburstLib/MarkerLib/PatternLib/ShapeEnum.cs | 2 +- .../Traces/SunburstLib/OutsideTextFont.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/Root.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/Stream.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/TextInfoFlag.cs | 2 +- Plotly.Blazor/Traces/SunburstLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Surface.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/ColorBar.cs | 2 +- .../SurfaceLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../Traces/SurfaceLib/ColorBarLib/LenModeEnum.cs | 2 +- .../SurfaceLib/ColorBarLib/OrientationEnum.cs | 2 +- .../SurfaceLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../SurfaceLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../SurfaceLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../SurfaceLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/SurfaceLib/ColorBarLib/TickFont.cs | 2 +- .../SurfaceLib/ColorBarLib/TickFormatStop.cs | 2 +- .../ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../Traces/SurfaceLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/SurfaceLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/SurfaceLib/ColorBarLib/Title.cs | 2 +- .../Traces/SurfaceLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../SurfaceLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../Traces/SurfaceLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/SurfaceLib/ColorBarLib/XRefEnum.cs | 2 +- .../Traces/SurfaceLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/SurfaceLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/Contours.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/ContoursLib/X.cs | 2 +- .../Traces/SurfaceLib/ContoursLib/XLib/Project.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/ContoursLib/Y.cs | 2 +- .../Traces/SurfaceLib/ContoursLib/YLib/Project.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/ContoursLib/Z.cs | 2 +- .../Traces/SurfaceLib/ContoursLib/ZLib/Project.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/HoverLabel.cs | 2 +- .../Traces/SurfaceLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/SurfaceLib/HoverLabelLib/Font.cs | 2 +- .../Traces/SurfaceLib/Legendgrouptitle.cs | 2 +- .../Traces/SurfaceLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/LightPosition.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/Lighting.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/Stream.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/XCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/YCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/SurfaceLib/ZCalendarEnum.cs | 2 +- Plotly.Blazor/Traces/Table.cs | 2 +- Plotly.Blazor/Traces/TableLib/Cells.cs | 2 +- .../Traces/TableLib/CellsLib/AlignEnum.cs | 2 +- Plotly.Blazor/Traces/TableLib/CellsLib/Fill.cs | 2 +- Plotly.Blazor/Traces/TableLib/CellsLib/Font.cs | 2 +- Plotly.Blazor/Traces/TableLib/CellsLib/Line.cs | 2 +- Plotly.Blazor/Traces/TableLib/Domain.cs | 2 +- Plotly.Blazor/Traces/TableLib/Header.cs | 2 +- .../Traces/TableLib/HeaderLib/AlignEnum.cs | 2 +- Plotly.Blazor/Traces/TableLib/HeaderLib/Fill.cs | 2 +- Plotly.Blazor/Traces/TableLib/HeaderLib/Font.cs | 2 +- Plotly.Blazor/Traces/TableLib/HeaderLib/Line.cs | 2 +- Plotly.Blazor/Traces/TableLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/TableLib/HoverLabel.cs | 2 +- .../Traces/TableLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/TableLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/TableLib/Legendgrouptitle.cs | 2 +- .../Traces/TableLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/TableLib/Stream.cs | 2 +- Plotly.Blazor/Traces/TableLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/TreeMap.cs | 2 +- .../Traces/TreeMapLib/BranchValuesEnum.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/CountFlag.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/Domain.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/HoverLabel.cs | 2 +- .../Traces/TreeMapLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/TreeMapLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/InsideTextFont.cs | 2 +- .../Traces/TreeMapLib/Legendgrouptitle.cs | 2 +- .../Traces/TreeMapLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/Marker.cs | 2 +- .../Traces/TreeMapLib/MarkerLib/ColorBar.cs | 2 +- .../MarkerLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../MarkerLib/ColorBarLib/LenModeEnum.cs | 2 +- .../MarkerLib/ColorBarLib/OrientationEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../MarkerLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../TreeMapLib/MarkerLib/ColorBarLib/TickFont.cs | 2 +- .../MarkerLib/ColorBarLib/TickFormatStop.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../MarkerLib/ColorBarLib/TickModeEnum.cs | 2 +- .../TreeMapLib/MarkerLib/ColorBarLib/TicksEnum.cs | 2 +- .../TreeMapLib/MarkerLib/ColorBarLib/Title.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../MarkerLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../MarkerLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../TreeMapLib/MarkerLib/ColorBarLib/XRefEnum.cs | 2 +- .../MarkerLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../TreeMapLib/MarkerLib/ColorBarLib/YRefEnum.cs | 2 +- .../Traces/TreeMapLib/MarkerLib/DepthFadeEnum.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Line.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Pad.cs | 2 +- .../Traces/TreeMapLib/MarkerLib/Pattern.cs | 2 +- .../MarkerLib/PatternLib/FillModeEnum.cs | 2 +- .../TreeMapLib/MarkerLib/PatternLib/ShapeEnum.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/OutsideTextFont.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/PathBar.cs | 2 +- .../Traces/TreeMapLib/PathBarLib/EdgeShapeEnum.cs | 2 +- .../Traces/TreeMapLib/PathBarLib/SideEnum.cs | 2 +- .../Traces/TreeMapLib/PathBarLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/Root.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/Stream.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/TextInfoFlag.cs | 2 +- .../Traces/TreeMapLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/Tiling.cs | 2 +- .../Traces/TreeMapLib/TilingLib/FlipFlag.cs | 2 +- .../Traces/TreeMapLib/TilingLib/PackingEnum.cs | 2 +- Plotly.Blazor/Traces/TreeMapLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Violin.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/Box.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/BoxLib/Line.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/HoverLabel.cs | 2 +- .../Traces/ViolinLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/ViolinLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/HoverOnFlag.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/Legendgrouptitle.cs | 2 +- .../Traces/ViolinLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/Line.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/Marker.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/MarkerLib/Line.cs | 2 +- .../Traces/ViolinLib/MarkerLib/SymbolEnum.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/MeanLine.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/OrientationEnum.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/PointsEnum.cs | 2 +- .../Traces/ViolinLib/QuartileMethodEnum.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/ScaleModeEnum.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/Selected.cs | 2 +- .../Traces/ViolinLib/SelectedLib/Marker.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/SideEnum.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/SpanModeEnum.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/Stream.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/Unselected.cs | 2 +- .../Traces/ViolinLib/UnselectedLib/Marker.cs | 2 +- Plotly.Blazor/Traces/ViolinLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Volume.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/Caps.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/CapsLib/X.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/CapsLib/Y.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/CapsLib/Z.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/ColorBar.cs | 2 +- .../VolumeLib/ColorBarLib/ExponentFormatEnum.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/LenModeEnum.cs | 2 +- .../VolumeLib/ColorBarLib/OrientationEnum.cs | 2 +- .../VolumeLib/ColorBarLib/ShowExponentEnum.cs | 2 +- .../VolumeLib/ColorBarLib/ShowTickPrefixEnum.cs | 2 +- .../VolumeLib/ColorBarLib/ShowTickSuffixEnum.cs | 2 +- .../VolumeLib/ColorBarLib/ThicknessModeEnum.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/TickFont.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/TickFormatStop.cs | 2 +- .../VolumeLib/ColorBarLib/TickLabelOverflowEnum.cs | 2 +- .../VolumeLib/ColorBarLib/TickLabelPositionEnum.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/TickModeEnum.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/TicksEnum.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/Title.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/TitleLib/Font.cs | 2 +- .../VolumeLib/ColorBarLib/TitleLib/SideEnum.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/XAnchorEnum.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/XRefEnum.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/YAnchorEnum.cs | 2 +- .../Traces/VolumeLib/ColorBarLib/YRefEnum.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/Contour.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/HoverLabel.cs | 2 +- .../Traces/VolumeLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/VolumeLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/Legendgrouptitle.cs | 2 +- .../Traces/VolumeLib/LegendgrouptitleLib/Font.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/LightPosition.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/Lighting.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/Slices.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/SlicesLib/X.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/SlicesLib/Y.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/SlicesLib/Z.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/SpaceFrame.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/Stream.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/Surface.cs | 2 +- .../Traces/VolumeLib/SurfaceLib/PatternFlag.cs | 2 +- Plotly.Blazor/Traces/VolumeLib/VisibleEnum.cs | 2 +- Plotly.Blazor/Traces/Waterfall.cs | 2 +- Plotly.Blazor/Traces/WaterfallLib/Connector.cs | 2 +- .../Traces/WaterfallLib/ConnectorLib/Line.cs | 2 +- .../Traces/WaterfallLib/ConnectorLib/ModeEnum.cs | 2 +- .../Traces/WaterfallLib/ConstrainTextEnum.cs | 2 +- Plotly.Blazor/Traces/WaterfallLib/Decreasing.cs | 2 +- .../Traces/WaterfallLib/DecreasingLib/Marker.cs | 2 +- .../WaterfallLib/DecreasingLib/MarkerLib/Line.cs | 2 +- Plotly.Blazor/Traces/WaterfallLib/HoverInfoFlag.cs | 2 +- Plotly.Blazor/Traces/WaterfallLib/HoverLabel.cs | 2 +- .../Traces/WaterfallLib/HoverLabelLib/AlignEnum.cs | 2 +- .../Traces/WaterfallLib/HoverLabelLib/Font.cs | 2 +- Plotly.Blazor/Traces/WaterfallLib/Increasing.cs | 2 +- .../Traces/WaterfallLib/IncreasingLib/Marker.cs | 2 +- .../WaterfallLib/IncreasingLib/MarkerLib/Line.cs | 2 +- .../Traces/WaterfallLib/InsideTextAnchorEnum.cs | 2 +- .../Traces/WaterfallLib/InsideTextFont.cs | 2 +- .../Traces/WaterfallLib/Legendgrouptitle.cs | 2 +- .../WaterfallLib/LegendgrouptitleLib/Font.cs | 2 +- .../Traces/WaterfallLib/OrientationEnum.cs | 2 +- .../Traces/WaterfallLib/OutsideTextFont.cs | 2 +- Plotly.Blazor/Traces/WaterfallLib/Stream.cs | 2 +- Plotly.Blazor/Traces/WaterfallLib/TextFont.cs | 2 +- Plotly.Blazor/Traces/WaterfallLib/TextInfoFlag.cs | 2 +- .../Traces/WaterfallLib/TextPositionEnum.cs | 2 +- Plotly.Blazor/Traces/WaterfallLib/Totals.cs | 2 +- .../Traces/WaterfallLib/TotalsLib/Marker.cs | 2 +- .../WaterfallLib/TotalsLib/MarkerLib/Line.cs | 2 +- Plotly.Blazor/Traces/WaterfallLib/VisibleEnum.cs | 2 +- .../Traces/WaterfallLib/XPeriodAlignmentEnum.cs | 2 +- .../Traces/WaterfallLib/YPeriodAlignmentEnum.cs | 2 +- Plotly.Blazor/TransformTypeEnum.cs | 2 +- Plotly.Blazor/Transforms/Aggregate.cs | 2 +- .../Transforms/AggregateLib/Aggregation.cs | 2 +- .../AggregateLib/AggregationLib/FuncEnum.cs | 2 +- .../AggregateLib/AggregationLib/FuncModeEnum.cs | 2 +- Plotly.Blazor/Transforms/Filter.cs | 2 +- .../Transforms/FilterLib/OperationEnum.cs | 2 +- .../Transforms/FilterLib/TargetCalendarEnum.cs | 2 +- .../Transforms/FilterLib/ValueCalendarEnum.cs | 2 +- Plotly.Blazor/Transforms/GroupBy.cs | 2 +- Plotly.Blazor/Transforms/GroupByLib/Style.cs | 2 +- Plotly.Blazor/Transforms/Sort.cs | 2 +- Plotly.Blazor/Transforms/SortLib/OrderEnum.cs | 2 +- 2336 files changed, 2338 insertions(+), 2353 deletions(-) diff --git a/Plotly.Blazor.Generator/src/Interop/RelayoutEventData.cs b/Plotly.Blazor.Generator/src/Interop/RelayoutEventData.cs index 2f41b3db..51001a7e 100644 --- a/Plotly.Blazor.Generator/src/Interop/RelayoutEventData.cs +++ b/Plotly.Blazor.Generator/src/Interop/RelayoutEventData.cs @@ -1,11 +1,4 @@ -using Plotly.Blazor.LayoutLib; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Plotly.Blazor.Interop +namespace Plotly.Blazor.Interop { /// diff --git a/Plotly.Blazor/Animation.cs b/Plotly.Blazor/Animation.cs index a320813f..182fbaa8 100644 --- a/Plotly.Blazor/Animation.cs +++ b/Plotly.Blazor/Animation.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor /// /// The Animation class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Animation : IEquatable { diff --git a/Plotly.Blazor/AnimationLib/DirectionEnum.cs b/Plotly.Blazor/AnimationLib/DirectionEnum.cs index c49465ea..6336f72c 100644 --- a/Plotly.Blazor/AnimationLib/DirectionEnum.cs +++ b/Plotly.Blazor/AnimationLib/DirectionEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.AnimationLib /// /// The direction in which to play the frames triggered by the animation call /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DirectionEnum { diff --git a/Plotly.Blazor/AnimationLib/Frame.cs b/Plotly.Blazor/AnimationLib/Frame.cs index 3c0f1a40..5bc6c703 100644 --- a/Plotly.Blazor/AnimationLib/Frame.cs +++ b/Plotly.Blazor/AnimationLib/Frame.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.AnimationLib /// /// The Frame class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Frame : IEquatable { diff --git a/Plotly.Blazor/AnimationLib/ModeEnum.cs b/Plotly.Blazor/AnimationLib/ModeEnum.cs index 80e29627..3937e77a 100644 --- a/Plotly.Blazor/AnimationLib/ModeEnum.cs +++ b/Plotly.Blazor/AnimationLib/ModeEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.AnimationLib /// which the new animation is started. If afterall all existing frames /// are animated to completion before the new animation is started. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ModeEnum { diff --git a/Plotly.Blazor/AnimationLib/Transition.cs b/Plotly.Blazor/AnimationLib/Transition.cs index 1269b9c8..91a0a9e5 100644 --- a/Plotly.Blazor/AnimationLib/Transition.cs +++ b/Plotly.Blazor/AnimationLib/Transition.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.AnimationLib /// /// The Transition class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Transition : IEquatable { diff --git a/Plotly.Blazor/AnimationLib/TransitionLib/EasingEnum.cs b/Plotly.Blazor/AnimationLib/TransitionLib/EasingEnum.cs index f4fb2d08..54e9b219 100644 --- a/Plotly.Blazor/AnimationLib/TransitionLib/EasingEnum.cs +++ b/Plotly.Blazor/AnimationLib/TransitionLib/EasingEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.AnimationLib.TransitionLib /// /// The easing function used for the transition /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum EasingEnum { diff --git a/Plotly.Blazor/AnimationLib/TransitionLib/OrderingEnum.cs b/Plotly.Blazor/AnimationLib/TransitionLib/OrderingEnum.cs index 7502e35c..d97b676b 100644 --- a/Plotly.Blazor/AnimationLib/TransitionLib/OrderingEnum.cs +++ b/Plotly.Blazor/AnimationLib/TransitionLib/OrderingEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.AnimationLib.TransitionLib /// Determines whether the figure's layout or traces smoothly transitions /// during updates that make both traces and layout change. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrderingEnum { diff --git a/Plotly.Blazor/Config.cs b/Plotly.Blazor/Config.cs index 06ad1533..71229c8e 100644 --- a/Plotly.Blazor/Config.cs +++ b/Plotly.Blazor/Config.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor /// /// The Config class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Config : IEquatable { diff --git a/Plotly.Blazor/ConfigLib/DisplayModeBarEnum.cs b/Plotly.Blazor/ConfigLib/DisplayModeBarEnum.cs index 22996573..e08cd5e1 100644 --- a/Plotly.Blazor/ConfigLib/DisplayModeBarEnum.cs +++ b/Plotly.Blazor/ConfigLib/DisplayModeBarEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.ConfigLib /// visible. If false, the mode bar is always hidden. If hover, /// the mode bar is visible while the mouse cursor is on the graph container. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DisplayModeBarEnum { diff --git a/Plotly.Blazor/ConfigLib/DoubleClickEnum.cs b/Plotly.Blazor/ConfigLib/DoubleClickEnum.cs index bd6c0843..0db6d971 100644 --- a/Plotly.Blazor/ConfigLib/DoubleClickEnum.cs +++ b/Plotly.Blazor/ConfigLib/DoubleClickEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.ConfigLib /// the odd double clicks resets the axis ranges to their initial values and /// even double clicks set the axis ranges to their autorange values. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DoubleClickEnum { diff --git a/Plotly.Blazor/ConfigLib/Edits.cs b/Plotly.Blazor/ConfigLib/Edits.cs index efbf6311..41e7e476 100644 --- a/Plotly.Blazor/ConfigLib/Edits.cs +++ b/Plotly.Blazor/ConfigLib/Edits.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.ConfigLib /// /// The Edits class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Edits : IEquatable { diff --git a/Plotly.Blazor/ConfigLib/ScrollZoomFlag.cs b/Plotly.Blazor/ConfigLib/ScrollZoomFlag.cs index 7d3d165e..5c46b109 100644 --- a/Plotly.Blazor/ConfigLib/ScrollZoomFlag.cs +++ b/Plotly.Blazor/ConfigLib/ScrollZoomFlag.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.ConfigLib /// do not have zoombox via pan), but turned off by default for cartesian subplots. /// Set scrollZoom to false to disable scrolling for all subplots. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ScrollZoomFlag diff --git a/Plotly.Blazor/Frames.cs b/Plotly.Blazor/Frames.cs index 82f3f206..8ab4cdc4 100644 --- a/Plotly.Blazor/Frames.cs +++ b/Plotly.Blazor/Frames.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor /// /// The Frames class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Frames : IEquatable { diff --git a/Plotly.Blazor/ITrace.cs b/Plotly.Blazor/ITrace.cs index c9332d26..a3cb5753 100644 --- a/Plotly.Blazor/ITrace.cs +++ b/Plotly.Blazor/ITrace.cs @@ -10,7 +10,7 @@ namespace Plotly.Blazor /// /// The trace interface. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] public interface ITrace { /// diff --git a/Plotly.Blazor/ITransform.cs b/Plotly.Blazor/ITransform.cs index 20c77245..b6e76ea5 100644 --- a/Plotly.Blazor/ITransform.cs +++ b/Plotly.Blazor/ITransform.cs @@ -10,7 +10,7 @@ namespace Plotly.Blazor /// /// The transform interface. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] public interface ITransform { /// diff --git a/Plotly.Blazor/Interop/RelayoutEventData.cs b/Plotly.Blazor/Interop/RelayoutEventData.cs index ee0bc0a6..51001a7e 100644 --- a/Plotly.Blazor/Interop/RelayoutEventData.cs +++ b/Plotly.Blazor/Interop/RelayoutEventData.cs @@ -1,11 +1,4 @@ -using Plotly.Blazor.LayoutLib; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Plotly.Blazor.Interop +namespace Plotly.Blazor.Interop { /// @@ -19,8 +12,7 @@ public class RelayoutEventData /// /// In some cases this may be not be set. /// - public double[] XRange { get; set; } - + public object[] XRange { get; set; } /// /// The y-axis of the layout. [y0, y1]. @@ -28,6 +20,6 @@ public class RelayoutEventData /// /// In some cases this may be not be set. /// - public double[] YRange { get; set; } + public object[] YRange { get; set; } } } diff --git a/Plotly.Blazor/Layout.cs b/Plotly.Blazor/Layout.cs index b6cf52c0..8ed2be17 100644 --- a/Plotly.Blazor/Layout.cs +++ b/Plotly.Blazor/Layout.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor /// /// The Layout class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Layout : IEquatable diff --git a/Plotly.Blazor/LayoutLib/ActiveSelection.cs b/Plotly.Blazor/LayoutLib/ActiveSelection.cs index 2b37caee..aac44a79 100644 --- a/Plotly.Blazor/LayoutLib/ActiveSelection.cs +++ b/Plotly.Blazor/LayoutLib/ActiveSelection.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// /// The ActiveSelection class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ActiveSelection : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/ActiveShape.cs b/Plotly.Blazor/LayoutLib/ActiveShape.cs index 33216256..ca1f7833 100644 --- a/Plotly.Blazor/LayoutLib/ActiveShape.cs +++ b/Plotly.Blazor/LayoutLib/ActiveShape.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// /// The ActiveShape class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ActiveShape : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/Annotation.cs b/Plotly.Blazor/LayoutLib/Annotation.cs index 89fd9c02..5ad43084 100644 --- a/Plotly.Blazor/LayoutLib/Annotation.cs +++ b/Plotly.Blazor/LayoutLib/Annotation.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// /// The Annotation class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Annotation : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/AnnotationLib/AlignEnum.cs b/Plotly.Blazor/LayoutLib/AnnotationLib/AlignEnum.cs index 366729af..511095b8 100644 --- a/Plotly.Blazor/LayoutLib/AnnotationLib/AlignEnum.cs +++ b/Plotly.Blazor/LayoutLib/AnnotationLib/AlignEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.AnnotationLib /// one or more <br> HTML tags) or if an explicit width is set to override /// the text width. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/LayoutLib/AnnotationLib/ArrowSideFlag.cs b/Plotly.Blazor/LayoutLib/AnnotationLib/ArrowSideFlag.cs index dddae296..8d30bba8 100644 --- a/Plotly.Blazor/LayoutLib/AnnotationLib/ArrowSideFlag.cs +++ b/Plotly.Blazor/LayoutLib/AnnotationLib/ArrowSideFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.AnnotationLib /// /// Sets the annotation arrow head position. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ArrowSideFlag diff --git a/Plotly.Blazor/LayoutLib/AnnotationLib/ClickToShowEnum.cs b/Plotly.Blazor/LayoutLib/AnnotationLib/ClickToShowEnum.cs index 55ac6305..3c0d9930 100644 --- a/Plotly.Blazor/LayoutLib/AnnotationLib/ClickToShowEnum.cs +++ b/Plotly.Blazor/LayoutLib/AnnotationLib/ClickToShowEnum.cs @@ -21,7 +21,7 @@ namespace Plotly.Blazor.LayoutLib.AnnotationLib /// label markers though, standoff is preferred over xclick and /// yclick. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ClickToShowEnum { diff --git a/Plotly.Blazor/LayoutLib/AnnotationLib/Font.cs b/Plotly.Blazor/LayoutLib/AnnotationLib/Font.cs index f81e3e6a..2537063c 100644 --- a/Plotly.Blazor/LayoutLib/AnnotationLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/AnnotationLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.AnnotationLib /// /// The Font class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/AnnotationLib/HoverLabel.cs b/Plotly.Blazor/LayoutLib/AnnotationLib/HoverLabel.cs index cdbcd070..2b88fb4b 100644 --- a/Plotly.Blazor/LayoutLib/AnnotationLib/HoverLabel.cs +++ b/Plotly.Blazor/LayoutLib/AnnotationLib/HoverLabel.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.AnnotationLib /// /// The HoverLabel class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class HoverLabel : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/AnnotationLib/HoverLabelLib/Font.cs b/Plotly.Blazor/LayoutLib/AnnotationLib/HoverLabelLib/Font.cs index c913c832..47095b2d 100644 --- a/Plotly.Blazor/LayoutLib/AnnotationLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/AnnotationLib/HoverLabelLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.AnnotationLib.HoverLabelLib /// /// The Font class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/AnnotationLib/VAlignEnum.cs b/Plotly.Blazor/LayoutLib/AnnotationLib/VAlignEnum.cs index 1deef270..7cfa2363 100644 --- a/Plotly.Blazor/LayoutLib/AnnotationLib/VAlignEnum.cs +++ b/Plotly.Blazor/LayoutLib/AnnotationLib/VAlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.AnnotationLib /// Sets the vertical alignment of the text within the box. Has an effect /// only if an explicit height is set to override the text height. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VAlignEnum { diff --git a/Plotly.Blazor/LayoutLib/AnnotationLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/AnnotationLib/XAnchorEnum.cs index 6ff764de..ca0e5abd 100644 --- a/Plotly.Blazor/LayoutLib/AnnotationLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/AnnotationLib/XAnchorEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.AnnotationLib /// or if there is an arrow, whereas for paper-referenced with no arrow, the /// anchor picked corresponds to the closest side. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/AnnotationLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/AnnotationLib/YAnchorEnum.cs index 2718bc35..cb764509 100644 --- a/Plotly.Blazor/LayoutLib/AnnotationLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/AnnotationLib/YAnchorEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.AnnotationLib /// whereas for paper-referenced with no arrow, the anchor picked corresponds /// to the closest side. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/AutoTypeNumbersEnum.cs b/Plotly.Blazor/LayoutLib/AutoTypeNumbersEnum.cs index cb1f39fb..f0253336 100644 --- a/Plotly.Blazor/LayoutLib/AutoTypeNumbersEnum.cs +++ b/Plotly.Blazor/LayoutLib/AutoTypeNumbersEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib /// be treated as a number during automatic axis type detection. This /// is the default value; however it could be overridden for individual axes. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoTypeNumbersEnum { diff --git a/Plotly.Blazor/LayoutLib/BarModeEnum.cs b/Plotly.Blazor/LayoutLib/BarModeEnum.cs index bb44ca46..b4e5c259 100644 --- a/Plotly.Blazor/LayoutLib/BarModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/BarModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib /// overlay, the bars are plotted over one another, you might need to /// reduce opacity to see multiple bars. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum BarModeEnum { diff --git a/Plotly.Blazor/LayoutLib/BarNormEnum.cs b/Plotly.Blazor/LayoutLib/BarNormEnum.cs index e7f56266..1bc9e8d5 100644 --- a/Plotly.Blazor/LayoutLib/BarNormEnum.cs +++ b/Plotly.Blazor/LayoutLib/BarNormEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// the value of each bar is divided by the sum of all values at that location /// coordinate. percent is the same but multiplied by 100 to show percentages. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum BarNormEnum { diff --git a/Plotly.Blazor/LayoutLib/BoxModeEnum.cs b/Plotly.Blazor/LayoutLib/BoxModeEnum.cs index 7275bc72..34af4ec4 100644 --- a/Plotly.Blazor/LayoutLib/BoxModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/BoxModeEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// one another, you might need to set opacity to see them multiple boxes. /// Has no effect on traces that have width set. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum BoxModeEnum { diff --git a/Plotly.Blazor/LayoutLib/CalendarEnum.cs b/Plotly.Blazor/LayoutLib/CalendarEnum.cs index 6d2381d9..7e5113a6 100644 --- a/Plotly.Blazor/LayoutLib/CalendarEnum.cs +++ b/Plotly.Blazor/LayoutLib/CalendarEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib /// Sets the default calendar system to use for interpreting and displaying /// dates throughout the plot. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CalendarEnum { diff --git a/Plotly.Blazor/LayoutLib/ClickModeFlag.cs b/Plotly.Blazor/LayoutLib/ClickModeFlag.cs index 096e8a00..1f545c59 100644 --- a/Plotly.Blazor/LayoutLib/ClickModeFlag.cs +++ b/Plotly.Blazor/LayoutLib/ClickModeFlag.cs @@ -23,7 +23,7 @@ namespace Plotly.Blazor.LayoutLib /// is missing, plotly_click and plotly_selected events are not /// fired. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ClickModeFlag diff --git a/Plotly.Blazor/LayoutLib/ColorAxis.cs b/Plotly.Blazor/LayoutLib/ColorAxis.cs index 04ec88a8..4909f64b 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxis.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxis.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// /// The ColorAxis class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorAxis : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBar.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBar.cs index c2380d6c..3975ff0e 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBar.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib /// /// The ColorBar class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ExponentFormatEnum.cs index efe3ea62..b7ddc4e7 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// e, 1e+9. If E, 1E+9. If power, 1x10^9 (with 9 in a /// super script). If SI, 1G. If B, 1B. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/LenModeEnum.cs index ab5b4779..79898675 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// color variation direction) is set in units of plot fraction or in /// *pixels. Use len to set the value. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/OrientationEnum.cs index f005555a..8d819334 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// /// Sets the orientation of the colorbar. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowExponentEnum.cs index 0484a75a..dcff9faf 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// only the exponent of the first tick is shown. If last, only the exponent /// of the last tick is shown. If none, no exponents appear. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowTickPrefixEnum.cs index b51d33ce..1d6a46cd 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// last tick is displayed with a suffix. If none, tick prefixes are /// hidden. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowTickSuffixEnum.cs index c2c0ffb7..9ad5b60c 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// /// Same as showtickprefix but for tick suffixes. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ThicknessModeEnum.cs index 776153c2..747d9d57 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// constant color direction) is set in units of plot fraction or in /// pixels. Use thickness to set the value. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickFont.cs index 990318bd..0420d8cd 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// /// The TickFont class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickFormatStop.cs index 93944b75..cf00019f 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// /// The TickFormatStop class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickLabelOverflowEnum.cs index e60c5f0a..5768153c 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickLabelPositionEnum.cs index 9904f9b2..8d24499e 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// options are used when orientation is h, top and bottom when /// orientation is v. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickModeEnum.cs index 340ca94f..5a7592de 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// the tick text is ticktext. (array is the default value if /// tickvals is provided). /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TicksEnum.cs index 6f54f9b0..f03b7da4 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// not drawn. If outside (inside), this axis' are drawn outside /// (inside) the axis lines. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/Title.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/Title.cs index 266f0737..13b7191e 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// /// The Title class. /// - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TitleLib/Font.cs index 022ec9d0..1bca9eeb 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TitleLib/SideEnum.cs index d8eb63f0..33a54394 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/XAnchorEnum.cs index 5b61204b..dfb9566c 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/XRefEnum.cs index b4aa5275..4f89c9d6 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/YAnchorEnum.cs index 338551ce..0020f08a 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/YRefEnum.cs index 930430c4..85889402 100644 --- a/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/LayoutLib/ColorAxisLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ColorAxisLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/LayoutLib/ColorScale.cs b/Plotly.Blazor/LayoutLib/ColorScale.cs index 6aa16dbe..96ed9ea4 100644 --- a/Plotly.Blazor/LayoutLib/ColorScale.cs +++ b/Plotly.Blazor/LayoutLib/ColorScale.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The ColorScale class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorScale : IEquatable<ColorScale> { diff --git a/Plotly.Blazor/LayoutLib/DragModeEnum.cs b/Plotly.Blazor/LayoutLib/DragModeEnum.cs index ea690a8f..666522e5 100644 --- a/Plotly.Blazor/LayoutLib/DragModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/DragModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// apply only to scatter traces with markers or text. <c>orbit</c> and <c>turntable</c> /// apply only to 3D scenes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DragModeEnum { diff --git a/Plotly.Blazor/LayoutLib/Font.cs b/Plotly.Blazor/LayoutLib/Font.cs index 31168ef6..902b3b31 100644 --- a/Plotly.Blazor/LayoutLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/FunnelModeEnum.cs b/Plotly.Blazor/LayoutLib/FunnelModeEnum.cs index 10bd5ec6..796ef688 100644 --- a/Plotly.Blazor/LayoutLib/FunnelModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/FunnelModeEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// shared location. With <c>overlay</c>, the bars are plotted over one another, /// you might need to reduce <c>opacity</c> to see multiple bars. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FunnelModeEnum { diff --git a/Plotly.Blazor/LayoutLib/Geo.cs b/Plotly.Blazor/LayoutLib/Geo.cs index b2371c12..48872a06 100644 --- a/Plotly.Blazor/LayoutLib/Geo.cs +++ b/Plotly.Blazor/LayoutLib/Geo.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Geo class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Geo : IEquatable<Geo> { diff --git a/Plotly.Blazor/LayoutLib/GeoLib/Center.cs b/Plotly.Blazor/LayoutLib/GeoLib/Center.cs index 6ace9b72..3b46a5fb 100644 --- a/Plotly.Blazor/LayoutLib/GeoLib/Center.cs +++ b/Plotly.Blazor/LayoutLib/GeoLib/Center.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.GeoLib /// <summary> /// The Center class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Center : IEquatable<Center> { diff --git a/Plotly.Blazor/LayoutLib/GeoLib/Domain.cs b/Plotly.Blazor/LayoutLib/GeoLib/Domain.cs index 58e009d7..a120cd53 100644 --- a/Plotly.Blazor/LayoutLib/GeoLib/Domain.cs +++ b/Plotly.Blazor/LayoutLib/GeoLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.GeoLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/LayoutLib/GeoLib/FitBoundsEnum.cs b/Plotly.Blazor/LayoutLib/GeoLib/FitBoundsEnum.cs index f39bf772..fed09b89 100644 --- a/Plotly.Blazor/LayoutLib/GeoLib/FitBoundsEnum.cs +++ b/Plotly.Blazor/LayoutLib/GeoLib/FitBoundsEnum.cs @@ -22,7 +22,7 @@ namespace Plotly.Blazor.LayoutLib.GeoLib /// provided) is considered in the <c>fitbounds</c> computations, Defaults to /// <c>false</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FitBoundsEnum { diff --git a/Plotly.Blazor/LayoutLib/GeoLib/LaTaxis.cs b/Plotly.Blazor/LayoutLib/GeoLib/LaTaxis.cs index 196d1daa..95b11f44 100644 --- a/Plotly.Blazor/LayoutLib/GeoLib/LaTaxis.cs +++ b/Plotly.Blazor/LayoutLib/GeoLib/LaTaxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.GeoLib /// <summary> /// The LaTaxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LaTaxis : IEquatable<LaTaxis> { diff --git a/Plotly.Blazor/LayoutLib/GeoLib/LonAxis.cs b/Plotly.Blazor/LayoutLib/GeoLib/LonAxis.cs index fb91431a..94531ff6 100644 --- a/Plotly.Blazor/LayoutLib/GeoLib/LonAxis.cs +++ b/Plotly.Blazor/LayoutLib/GeoLib/LonAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.GeoLib /// <summary> /// The LonAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LonAxis : IEquatable<LonAxis> { diff --git a/Plotly.Blazor/LayoutLib/GeoLib/Projection.cs b/Plotly.Blazor/LayoutLib/GeoLib/Projection.cs index efb82f94..b706b455 100644 --- a/Plotly.Blazor/LayoutLib/GeoLib/Projection.cs +++ b/Plotly.Blazor/LayoutLib/GeoLib/Projection.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.GeoLib /// <summary> /// The Projection class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Projection : IEquatable<Projection> { diff --git a/Plotly.Blazor/LayoutLib/GeoLib/ProjectionLib/Rotation.cs b/Plotly.Blazor/LayoutLib/GeoLib/ProjectionLib/Rotation.cs index 48fda565..4a9c8017 100644 --- a/Plotly.Blazor/LayoutLib/GeoLib/ProjectionLib/Rotation.cs +++ b/Plotly.Blazor/LayoutLib/GeoLib/ProjectionLib/Rotation.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.GeoLib.ProjectionLib /// <summary> /// The Rotation class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Rotation : IEquatable<Rotation> { diff --git a/Plotly.Blazor/LayoutLib/GeoLib/ProjectionLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/GeoLib/ProjectionLib/TypeEnum.cs index fe0e95b5..4499ef4d 100644 --- a/Plotly.Blazor/LayoutLib/GeoLib/ProjectionLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/GeoLib/ProjectionLib/TypeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.GeoLib.ProjectionLib /// <summary> /// Sets the projection type. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/GeoLib/ResolutionEnum.cs b/Plotly.Blazor/LayoutLib/GeoLib/ResolutionEnum.cs index 97f8baf0..fb2c4321 100644 --- a/Plotly.Blazor/LayoutLib/GeoLib/ResolutionEnum.cs +++ b/Plotly.Blazor/LayoutLib/GeoLib/ResolutionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.GeoLib /// Sets the resolution of the base layers. The values have units of km/mm e.g. /// 110 corresponds to a scale ratio of 1:110,000,000. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ResolutionEnum { diff --git a/Plotly.Blazor/LayoutLib/GeoLib/ScopeEnum.cs b/Plotly.Blazor/LayoutLib/GeoLib/ScopeEnum.cs index def15469..1bed67f7 100644 --- a/Plotly.Blazor/LayoutLib/GeoLib/ScopeEnum.cs +++ b/Plotly.Blazor/LayoutLib/GeoLib/ScopeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.GeoLib /// <summary> /// Set the scope of the map. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ScopeEnum { diff --git a/Plotly.Blazor/LayoutLib/Grid.cs b/Plotly.Blazor/LayoutLib/Grid.cs index c8893c15..8c076a35 100644 --- a/Plotly.Blazor/LayoutLib/Grid.cs +++ b/Plotly.Blazor/LayoutLib/Grid.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Grid class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Grid : IEquatable<Grid> { diff --git a/Plotly.Blazor/LayoutLib/GridLib/Domain.cs b/Plotly.Blazor/LayoutLib/GridLib/Domain.cs index 8efbe5fc..87676245 100644 --- a/Plotly.Blazor/LayoutLib/GridLib/Domain.cs +++ b/Plotly.Blazor/LayoutLib/GridLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.GridLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/LayoutLib/GridLib/PatternEnum.cs b/Plotly.Blazor/LayoutLib/GridLib/PatternEnum.cs index 049a6d57..bf2586cd 100644 --- a/Plotly.Blazor/LayoutLib/GridLib/PatternEnum.cs +++ b/Plotly.Blazor/LayoutLib/GridLib/PatternEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.GridLib /// y axis per row. <c>independent</c> uses a new xy pair for each cell, left-to-right /// across each row then iterating rows according to <c>roworder</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum PatternEnum { diff --git a/Plotly.Blazor/LayoutLib/GridLib/RowOrderEnum.cs b/Plotly.Blazor/LayoutLib/GridLib/RowOrderEnum.cs index 4eb4a301..c71d9801 100644 --- a/Plotly.Blazor/LayoutLib/GridLib/RowOrderEnum.cs +++ b/Plotly.Blazor/LayoutLib/GridLib/RowOrderEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.GridLib /// Is the first row the top or the bottom? Note that columns are always enumerated /// from left to right. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum RowOrderEnum { diff --git a/Plotly.Blazor/LayoutLib/GridLib/XSideEnum.cs b/Plotly.Blazor/LayoutLib/GridLib/XSideEnum.cs index 520db214..cc452b7a 100644 --- a/Plotly.Blazor/LayoutLib/GridLib/XSideEnum.cs +++ b/Plotly.Blazor/LayoutLib/GridLib/XSideEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.GridLib /// bottom of the grid. 'bottom plot' is the lowest plot that each x /// axis is used in. <c>top</c> and 'top plot' are similar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XSideEnum { diff --git a/Plotly.Blazor/LayoutLib/GridLib/YSideEnum.cs b/Plotly.Blazor/LayoutLib/GridLib/YSideEnum.cs index 87ae7b87..fa49814e 100644 --- a/Plotly.Blazor/LayoutLib/GridLib/YSideEnum.cs +++ b/Plotly.Blazor/LayoutLib/GridLib/YSideEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.GridLib /// edge of the grid. 'left plot' is the leftmost plot that each y axis /// is used in. <c>right</c> and 'right plot' are similar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YSideEnum { diff --git a/Plotly.Blazor/LayoutLib/HoverLabel.cs b/Plotly.Blazor/LayoutLib/HoverLabel.cs index 65b0793b..a89fb405 100644 --- a/Plotly.Blazor/LayoutLib/HoverLabel.cs +++ b/Plotly.Blazor/LayoutLib/HoverLabel.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class HoverLabel : IEquatable<HoverLabel> { diff --git a/Plotly.Blazor/LayoutLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/LayoutLib/HoverLabelLib/AlignEnum.cs index 951fc13f..b53d97d4 100644 --- a/Plotly.Blazor/LayoutLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/LayoutLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/LayoutLib/HoverLabelLib/Font.cs b/Plotly.Blazor/LayoutLib/HoverLabelLib/Font.cs index bf82117e..00753fb5 100644 --- a/Plotly.Blazor/LayoutLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/HoverLabelLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/HoverLabelLib/GroupTitleFont.cs b/Plotly.Blazor/LayoutLib/HoverLabelLib/GroupTitleFont.cs index d35e0fbd..b0c990b2 100644 --- a/Plotly.Blazor/LayoutLib/HoverLabelLib/GroupTitleFont.cs +++ b/Plotly.Blazor/LayoutLib/HoverLabelLib/GroupTitleFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.HoverLabelLib /// <summary> /// The GroupTitleFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class GroupTitleFont : IEquatable<GroupTitleFont> { diff --git a/Plotly.Blazor/LayoutLib/HoverModeEnum.cs b/Plotly.Blazor/LayoutLib/HoverModeEnum.cs index 795592bc..ba5dfafc 100644 --- a/Plotly.Blazor/LayoutLib/HoverModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/HoverModeEnum.cs @@ -20,7 +20,7 @@ namespace Plotly.Blazor.LayoutLib /// In this mode, spikelines are enabled by default perpendicular to the specified /// axis. If false, hover interactions are disabled. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HoverModeEnum { diff --git a/Plotly.Blazor/LayoutLib/Image.cs b/Plotly.Blazor/LayoutLib/Image.cs index 2194cfd0..1f6fff83 100644 --- a/Plotly.Blazor/LayoutLib/Image.cs +++ b/Plotly.Blazor/LayoutLib/Image.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Image class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Image : IEquatable<Image> { diff --git a/Plotly.Blazor/LayoutLib/ImageLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/ImageLib/LayerEnum.cs index c99aca20..826190f1 100644 --- a/Plotly.Blazor/LayoutLib/ImageLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/ImageLib/LayerEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ImageLib /// and <c>yref</c> are both set to <c>paper</c>, image is drawn below the entire /// plot area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/ImageLib/SizingEnum.cs b/Plotly.Blazor/LayoutLib/ImageLib/SizingEnum.cs index 358db533..4794f90b 100644 --- a/Plotly.Blazor/LayoutLib/ImageLib/SizingEnum.cs +++ b/Plotly.Blazor/LayoutLib/ImageLib/SizingEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.ImageLib /// <summary> /// Specifies which dimension of the image to constrain. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizingEnum { diff --git a/Plotly.Blazor/LayoutLib/ImageLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/ImageLib/XAnchorEnum.cs index 1ee9660d..5971c0b6 100644 --- a/Plotly.Blazor/LayoutLib/ImageLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/ImageLib/XAnchorEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.ImageLib /// <summary> /// Sets the anchor for the x position /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/ImageLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/ImageLib/YAnchorEnum.cs index 76456b9b..5dba178d 100644 --- a/Plotly.Blazor/LayoutLib/ImageLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/ImageLib/YAnchorEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.ImageLib /// <summary> /// Sets the anchor for the y position. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/Legend.cs b/Plotly.Blazor/LayoutLib/Legend.cs index eb47c901..6db8bc53 100644 --- a/Plotly.Blazor/LayoutLib/Legend.cs +++ b/Plotly.Blazor/LayoutLib/Legend.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Legend class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Legend : IEquatable<Legend> { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/EntryWidthModeEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/EntryWidthModeEnum.cs index 7217f84b..f241693e 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/EntryWidthModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/EntryWidthModeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// <summary> /// Determines what entrywidth means. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum EntryWidthModeEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/Font.cs b/Plotly.Blazor/LayoutLib/LegendLib/Font.cs index 9471ee7b..844d526e 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/GroupClickEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/GroupClickEnum.cs index be38ced0..f50a1869 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/GroupClickEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/GroupClickEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// toggles the visibility of all items in the same legendgroup as the item /// clicked on the graph. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum GroupClickEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/GroupTitleFont.cs b/Plotly.Blazor/LayoutLib/LegendLib/GroupTitleFont.cs index d2f331c5..53fdfcc0 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/GroupTitleFont.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/GroupTitleFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// <summary> /// The GroupTitleFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class GroupTitleFont : IEquatable<GroupTitleFont> { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/ItemClickEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/ItemClickEnum.cs index a719d92c..20be5622 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/ItemClickEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/ItemClickEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// clicked item the sole visible item on the graph. <c>false</c> disables legend /// item click interactions. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ItemClickEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/ItemDoubleClickEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/ItemDoubleClickEnum.cs index d5a6875c..ea645caf 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/ItemDoubleClickEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/ItemDoubleClickEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// the clicked item the sole visible item on the graph. <c>false</c> disables /// legend item double-click interactions. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ItemDoubleClickEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/ItemSizingEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/ItemSizingEnum.cs index 0b67b2e7..8dd7fbd3 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/ItemSizingEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/ItemSizingEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// attributes or remain <c>constant</c> independent of the symbol size on the /// graph. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ItemSizingEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/OrientationEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/OrientationEnum.cs index 6fa054ac..77b5a65c 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/OrientationEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// <summary> /// Sets the orientation of the legend. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/Title.cs b/Plotly.Blazor/LayoutLib/LegendLib/Title.cs index 0e3b1e56..661ac56f 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/LegendLib/TitleLib/Font.cs index 65026c27..3836897f 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/TitleLib/SideEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/TitleLib/SideEnum.cs index 3cab35a9..e761c362 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/TitleLib/SideEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib.TitleLib /// options could be used to expand top center and top right are for horizontal /// alignment legend area in both x and y sides. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/TraceOrderFlag.cs b/Plotly.Blazor/LayoutLib/LegendLib/TraceOrderFlag.cs index f13960ed..193c9554 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/TraceOrderFlag.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/TraceOrderFlag.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// is provided). if <c>grouped+reversed</c>, the items are displayed in the /// opposite order as <c>grouped</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum TraceOrderFlag diff --git a/Plotly.Blazor/LayoutLib/LegendLib/VAlignEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/VAlignEnum.cs index d252136f..375f9ac8 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/VAlignEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/VAlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// Sets the vertical alignment of the symbols with respect to their associated /// text. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VAlignEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/XAnchorEnum.cs index b32093f4..93c47970 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/XAnchorEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// less than or equal to 1/3 and anchors legends with respect to their center /// otherwise. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/XRefEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/XRefEnum.cs index 30fae220..a1073344 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/XRefEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/YAnchorEnum.cs index 96369328..4f449f90 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/YAnchorEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// greater than or equal to 2/3 and anchors legends with respect to their middle /// otherwise. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/LegendLib/YRefEnum.cs b/Plotly.Blazor/LayoutLib/LegendLib/YRefEnum.cs index 7bcb7a48..fa6850fc 100644 --- a/Plotly.Blazor/LayoutLib/LegendLib/YRefEnum.cs +++ b/Plotly.Blazor/LayoutLib/LegendLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.LegendLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/LayoutLib/MapBox.cs b/Plotly.Blazor/LayoutLib/MapBox.cs index 70b3d4eb..fe1afbdb 100644 --- a/Plotly.Blazor/LayoutLib/MapBox.cs +++ b/Plotly.Blazor/LayoutLib/MapBox.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The MapBox class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class MapBox : IEquatable<MapBox> { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/Bounds.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/Bounds.cs index da551d5a..3aff35e3 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/Bounds.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/Bounds.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib /// <summary> /// The Bounds class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Bounds : IEquatable<Bounds> { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/Center.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/Center.cs index 77a98576..29565679 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/Center.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/Center.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib /// <summary> /// The Center class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Center : IEquatable<Center> { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/Domain.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/Domain.cs index 350be7a0..3f0fbcde 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/Domain.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/Layer.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/Layer.cs index 038e321d..5ad81ab8 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/Layer.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/Layer.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib /// <summary> /// The Layer class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Layer : IEquatable<Layer> { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Circle.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Circle.cs index 522404b7..90029d14 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Circle.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Circle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib.LayerLib /// <summary> /// The Circle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Circle : IEquatable<Circle> { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Fill.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Fill.cs index b798c498..f317eac2 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Fill.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Fill.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib.LayerLib /// <summary> /// The Fill class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Fill : IEquatable<Fill> { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Line.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Line.cs index 9ca27c44..91129121 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Line.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib.LayerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SourceTypeEnum.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SourceTypeEnum.cs index 295ddfc1..ab0d932e 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SourceTypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SourceTypeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib.LayerLib /// <summary> /// Sets the source type for this layer, that is the type of the layer data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SourceTypeEnum { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Symbol.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Symbol.cs index 16a301a1..2dbc6d70 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Symbol.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/Symbol.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib.LayerLib /// <summary> /// The Symbol class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Symbol : IEquatable<Symbol> { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/PlacementEnum.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/PlacementEnum.cs index 0a8b5df3..c59dba39 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/PlacementEnum.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/PlacementEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib.LayerLib.SymbolLib /// the line of the geometry If <c>placement</c> is <c>line-center</c>, the /// label is placed on the center of the geometry /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum PlacementEnum { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/TextFont.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/TextFont.cs index 08edb700..19d02b17 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/TextFont.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib.LayerLib.SymbolLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/TextPositionEnum.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/TextPositionEnum.cs index 3663abb7..2ab81983 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/TextPositionEnum.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/SymbolLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib.LayerLib.SymbolLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/TypeEnum.cs index c9e6b2e3..4022b6df 100644 --- a/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/MapBoxLib/LayerLib/TypeEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.MapBoxLib.LayerLib /// With <c>sourcetype</c> set to <c>raster</c> or <c><c>image</c></c>, only /// the <c>raster</c> value is allowed. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/Margin.cs b/Plotly.Blazor/LayoutLib/Margin.cs index ff301c3a..2e13c6b9 100644 --- a/Plotly.Blazor/LayoutLib/Margin.cs +++ b/Plotly.Blazor/LayoutLib/Margin.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Margin class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Margin : IEquatable<Margin> { diff --git a/Plotly.Blazor/LayoutLib/ModeBar.cs b/Plotly.Blazor/LayoutLib/ModeBar.cs index 97a64c56..645bd1fb 100644 --- a/Plotly.Blazor/LayoutLib/ModeBar.cs +++ b/Plotly.Blazor/LayoutLib/ModeBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The ModeBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ModeBar : IEquatable<ModeBar> diff --git a/Plotly.Blazor/LayoutLib/ModeBarLib/OrientationEnum.cs b/Plotly.Blazor/LayoutLib/ModeBarLib/OrientationEnum.cs index e1d0b36e..b02ec236 100644 --- a/Plotly.Blazor/LayoutLib/ModeBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/LayoutLib/ModeBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.ModeBarLib /// <summary> /// Sets the orientation of the modebar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/LayoutLib/NewSelection.cs b/Plotly.Blazor/LayoutLib/NewSelection.cs index 4942704c..5bfc336f 100644 --- a/Plotly.Blazor/LayoutLib/NewSelection.cs +++ b/Plotly.Blazor/LayoutLib/NewSelection.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The NewSelection class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class NewSelection : IEquatable<NewSelection> { diff --git a/Plotly.Blazor/LayoutLib/NewSelectionLib/Line.cs b/Plotly.Blazor/LayoutLib/NewSelectionLib/Line.cs index a4ca2b6c..9b6fb017 100644 --- a/Plotly.Blazor/LayoutLib/NewSelectionLib/Line.cs +++ b/Plotly.Blazor/LayoutLib/NewSelectionLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.NewSelectionLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/LayoutLib/NewSelectionLib/ModeEnum.cs b/Plotly.Blazor/LayoutLib/NewSelectionLib/ModeEnum.cs index 2c0e753c..2ee2a97f 100644 --- a/Plotly.Blazor/LayoutLib/NewSelectionLib/ModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/NewSelectionLib/ModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.NewSelectionLib /// created after first mouse. By adding to and subtracting from the initial /// selection, this option allows declaring extra outlines of the selection. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ModeEnum { diff --git a/Plotly.Blazor/LayoutLib/NewShape.cs b/Plotly.Blazor/LayoutLib/NewShape.cs index 89ad9d4e..546cbc55 100644 --- a/Plotly.Blazor/LayoutLib/NewShape.cs +++ b/Plotly.Blazor/LayoutLib/NewShape.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The NewShape class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class NewShape : IEquatable<NewShape> { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/DrawDirectionEnum.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/DrawDirectionEnum.cs index 9b4a5dc4..9b941d67 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/DrawDirectionEnum.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/DrawDirectionEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib /// the draw to be either horizontal or vertical. <c>horizontal</c> allows horizontal /// extend. <c>vertical</c> allows vertical extend. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DrawDirectionEnum { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/FillRuleEnum.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/FillRuleEnum.cs index 87ecba0e..825038ac 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/FillRuleEnum.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/FillRuleEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib /// <summary> /// Determines the path's interior. For more info please visit https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill-rule /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillRuleEnum { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/Label.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/Label.cs index 7129b282..f8bbaecd 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/Label.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/Label.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib /// <summary> /// The Label class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Label : IEquatable<Label> { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/Font.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/Font.cs index 14da47a3..ead2e33a 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib.LabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/TextPositionEnum.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/TextPositionEnum.cs index 1676c8f5..63e8c665 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/TextPositionEnum.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/TextPositionEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib.LabelLib /// <c>middle</c>, and <c>end</c>. Default: 'middle center' for rectangles, /// circles, and paths; <c>middle</c> for lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/XAnchorEnum.cs index 95759ade..53ff2506 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/XAnchorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib.LabelLib /// and <c>xanchor</c> to <c>right</c> then the right-most portion of the label /// text lines up with the right-most edge of the new shape. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/YAnchorEnum.cs index af9d690f..add046c6 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/LabelLib/YAnchorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib.LabelLib /// and <c>yanchor</c> to <c>top</c> then the top-most portion of the label /// text lines up with the top-most edge of the new shape. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/LayerEnum.cs index 49c32271..f23467c5 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/LayerEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib /// <summary> /// Specifies whether new shapes are drawn below or above traces. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/LegendGroupTitle.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/LegendGroupTitle.cs index 05154d7f..561584d3 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/LegendGroupTitle.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/LegendGroupTitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/LegendGroupTitleLib/Font.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/LegendGroupTitleLib/Font.cs index 349053a5..7ef5e1f6 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/LegendGroupTitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/LegendGroupTitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/Line.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/Line.cs index 7a183381..ea9aee69 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/Line.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/LayoutLib/NewShapeLib/VisibleEnum.cs b/Plotly.Blazor/LayoutLib/NewShapeLib/VisibleEnum.cs index 83a1e2de..3fd1b9c6 100644 --- a/Plotly.Blazor/LayoutLib/NewShapeLib/VisibleEnum.cs +++ b/Plotly.Blazor/LayoutLib/NewShapeLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.NewShapeLib /// shape is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/LayoutLib/Polar.cs b/Plotly.Blazor/LayoutLib/Polar.cs index c344b812..114fd4ba 100644 --- a/Plotly.Blazor/LayoutLib/Polar.cs +++ b/Plotly.Blazor/LayoutLib/Polar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Polar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Polar : IEquatable<Polar> { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxis.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxis.cs index b20927ac..fb2d3b66 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxis.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib /// <summary> /// The AngularAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class AngularAxis : IEquatable<AngularAxis> { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/AutoTypeNumbersEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/AutoTypeNumbersEnum.cs index daf7b48a..6fb3a820 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/AutoTypeNumbersEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/AutoTypeNumbersEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// be treated as a number during automatic axis <c>type</c> detection. Defaults /// to layout.autotypenumbers. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoTypeNumbersEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/CategoryOrderEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/CategoryOrderEnum.cs index aa97f839..b92ba182 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/CategoryOrderEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/CategoryOrderEnum.cs @@ -22,7 +22,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// be determined by the numerical order of the values. Similarly, the order /// can be determined by the min, max, sum, mean or median of all the values. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CategoryOrderEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/DirectionEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/DirectionEnum.cs index c63248eb..4c7faac2 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/DirectionEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/DirectionEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// <summary> /// Sets the direction corresponding to positive angles. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DirectionEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ExponentFormatEnum.cs index bfce339c..2ea85656 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/LayerEnum.cs index 92fa1128..ba781d2a 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/LayerEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// with <c>cliponaxis</c> set to <c>false</c> to show markers and/or text nodes /// above this axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowExponentEnum.cs index 575c2235..316884f3 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowTickPrefixEnum.cs index 9a924367..e883924f 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowTickSuffixEnum.cs index 3e541350..3cda9e16 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ThetaUnitEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ThetaUnitEnum.cs index 804f3337..749aa64c 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ThetaUnitEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/ThetaUnitEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// Sets the format unit of the formatted <c>theta</c> values. Has an effect /// only when <c>angularaxis.type</c> is <c>linear</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThetaUnitEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickFont.cs index b4036b0b..73210923 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickFormatStop.cs index 1d11a150..1d9e5f43 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickModeEnum.cs index 9da22edf..4c05506b 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TicksEnum.cs index 7eef77c5..642a56bb 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TypeEnum.cs index e6b5a95b..f410c8b6 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/AngularAxisLib/TypeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.AngularAxisLib /// the unit in which axis value are shown. If *category, use <c>period</c> /// to set the number of integer coordinates around polar axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/Domain.cs b/Plotly.Blazor/LayoutLib/PolarLib/Domain.cs index 5c3ee544..05efc16a 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/Domain.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/GridShapeEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/GridShapeEnum.cs index 621dfaa5..01dfeb3e 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/GridShapeEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/GridShapeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib /// when <c>gridshape</c> is <c>circular</c> (so that radial axis scale is the /// same as the data scale). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum GridShapeEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxis.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxis.cs index c84755c3..c008a3cd 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxis.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib /// <summary> /// The RadialAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class RadialAxis : IEquatable<RadialAxis> { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/AutoRangeEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/AutoRangeEnum.cs index d95c9db4..8d98da36 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/AutoRangeEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/AutoRangeEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// on a reversed axis. Using <c>reversed</c> applies autorange on both ends /// and reverses the axis direction. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoRangeEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/AutoTypeNumbersEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/AutoTypeNumbersEnum.cs index a742a438..1efb98e7 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/AutoTypeNumbersEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/AutoTypeNumbersEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// be treated as a number during automatic axis <c>type</c> detection. Defaults /// to layout.autotypenumbers. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoTypeNumbersEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/Autorangeoptions.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/Autorangeoptions.cs index c1eceb66..51f818db 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/Autorangeoptions.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/Autorangeoptions.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// <summary> /// The AutoRangeOptions class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class AutoRangeOptions : IEquatable<AutoRangeOptions> diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/CalendarEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/CalendarEnum.cs index ebe4d941..1c74b1e3 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/CalendarEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/CalendarEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// is a date axis. This does not set the calendar for interpreting data on /// this axis, that's specified in the trace or via the global <c>layout.calendar</c> /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CalendarEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/CategoryOrderEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/CategoryOrderEnum.cs index 0ee2a9db..0cb3c5a3 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/CategoryOrderEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/CategoryOrderEnum.cs @@ -22,7 +22,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// be determined by the numerical order of the values. Similarly, the order /// can be determined by the min, max, sum, mean or median of all the values. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CategoryOrderEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ExponentFormatEnum.cs index a2a7c30a..88b3a15c 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/LayerEnum.cs index dffe75a3..4d884152 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/LayerEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// with <c>cliponaxis</c> set to <c>false</c> to show markers and/or text nodes /// above this axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/RangeModeEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/RangeModeEnum.cs index 971e2e67..30bea20a 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/RangeModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/RangeModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// data. If <c>normal</c>, the range is computed in relation to the extrema /// of the input data (same behavior as for cartesian axes). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum RangeModeEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowExponentEnum.cs index 3d9f91b8..cb6cf64b 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowTickPrefixEnum.cs index ef50a3aa..7dc75808 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowTickSuffixEnum.cs index 405a91df..d46eae27 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/SideEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/SideEnum.cs index c13d0271..cab97e20 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/SideEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/SideEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// <summary> /// Determines on which side of radial axis line the tick and tick labels appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickFont.cs index 78695864..7f4abbd3 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickFormatStop.cs index 2f21aa0c..dcc2a543 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickModeEnum.cs index bd8f615b..4fd15416 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TicksEnum.cs index 17a73129..b1e513c3 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/Title.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/Title.cs index e34b212c..7f1fdddf 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TitleLib/Font.cs index e9dd0dca..f1606331 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TypeEnum.cs index 864b170b..bcebece0 100644 --- a/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/PolarLib/RadialAxisLib/TypeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.PolarLib.RadialAxisLib /// Sets the axis type. By default, plotly attempts to determined the axis type /// by looking into the data of the traces that referenced the axis in question. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/ScatterModeEnum.cs b/Plotly.Blazor/LayoutLib/ScatterModeEnum.cs index a295b843..db246cfa 100644 --- a/Plotly.Blazor/LayoutLib/ScatterModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/ScatterModeEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// scatter points are plotted over one another, you might need to reduce <c>opacity</c> /// to see multiple scatter points. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ScatterModeEnum { diff --git a/Plotly.Blazor/LayoutLib/Scene.cs b/Plotly.Blazor/LayoutLib/Scene.cs index bd0ffc95..46412512 100644 --- a/Plotly.Blazor/LayoutLib/Scene.cs +++ b/Plotly.Blazor/LayoutLib/Scene.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Scene class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Scene : IEquatable<Scene> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/Annotation.cs b/Plotly.Blazor/LayoutLib/SceneLib/Annotation.cs index 59326a9d..7665e02d 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/Annotation.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/Annotation.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib /// <summary> /// The Annotation class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Annotation : IEquatable<Annotation> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/AlignEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/AlignEnum.cs index bd85b8b7..ad55b71c 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/AlignEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/AlignEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.AnnotationLib /// one or more <br> HTML tags) or if an explicit width is set to override /// the text width. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/ArrowSideFlag.cs b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/ArrowSideFlag.cs index 3664f22c..b84ba929 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/ArrowSideFlag.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/ArrowSideFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.AnnotationLib /// <summary> /// Sets the annotation arrow head position. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ArrowSideFlag diff --git a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/Font.cs b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/Font.cs index e20d5181..39a8d5a8 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.AnnotationLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/HoverLabel.cs b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/HoverLabel.cs index 436b6d6a..c3e17993 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/HoverLabel.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/HoverLabel.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.AnnotationLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class HoverLabel : IEquatable<HoverLabel> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/HoverLabelLib/Font.cs b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/HoverLabelLib/Font.cs index 41a62b98..c071487f 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/HoverLabelLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.AnnotationLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/VAlignEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/VAlignEnum.cs index 7d8e8465..947e02c2 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/VAlignEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/VAlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.AnnotationLib /// Sets the vertical alignment of the <c>text</c> within the box. Has an effect /// only if an explicit height is set to override the text height. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VAlignEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/XAnchorEnum.cs index d3ec7977..d9dee3a8 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/XAnchorEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.AnnotationLib /// or if there is an arrow, whereas for paper-referenced with no arrow, the /// anchor picked corresponds to the closest side. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/YAnchorEnum.cs index 2def4db1..aea3e284 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/AnnotationLib/YAnchorEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.AnnotationLib /// whereas for paper-referenced with no arrow, the anchor picked corresponds /// to the closest side. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/AspectModeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/AspectModeEnum.cs index 17ad7e44..f7130834 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/AspectModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/AspectModeEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib /// more than four times the size of the two others, where in that case the /// results of <c>cube</c> are used. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AspectModeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/AspectRatio.cs b/Plotly.Blazor/LayoutLib/SceneLib/AspectRatio.cs index ae6a9273..0c9b629b 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/AspectRatio.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/AspectRatio.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib /// <summary> /// The AspectRatio class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class AspectRatio : IEquatable<AspectRatio> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/Camera.cs b/Plotly.Blazor/LayoutLib/SceneLib/Camera.cs index 302a237a..0d059f8c 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/Camera.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/Camera.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib /// <summary> /// The Camera class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Camera : IEquatable<Camera> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Center.cs b/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Center.cs index bbe1f86f..f4dc3996 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Center.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Center.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.CameraLib /// <summary> /// The Center class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Center : IEquatable<Center> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Eye.cs b/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Eye.cs index c1ee6099..af43e224 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Eye.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Eye.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.CameraLib /// <summary> /// The Eye class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Eye : IEquatable<Eye> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Projection.cs b/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Projection.cs index aa36916c..fb2c9c83 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Projection.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Projection.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.CameraLib /// <summary> /// The Projection class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Projection : IEquatable<Projection> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/ProjectionLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/ProjectionLib/TypeEnum.cs index a8de8d33..f70d5fdd 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/ProjectionLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/ProjectionLib/TypeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.CameraLib.ProjectionLib /// Sets the projection type. The projection type could be either <c>perspective</c> /// or <c>orthographic</c>. The default is <c>perspective</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Up.cs b/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Up.cs index f7bce522..c1e6006c 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Up.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/CameraLib/Up.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.CameraLib /// <summary> /// The Up class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Up : IEquatable<Up> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/Domain.cs b/Plotly.Blazor/LayoutLib/SceneLib/Domain.cs index f58becc3..1e5a8e62 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/Domain.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/DragModeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/DragModeEnum.cs index eea4f5a4..7772acfc 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/DragModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/DragModeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib /// <summary> /// Determines the mode of drag interactions for this scene. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DragModeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/HoverModeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/HoverModeEnum.cs index a32d7ee2..41311f8d 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/HoverModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/HoverModeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib /// <summary> /// Determines the mode of hover interactions for this scene. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HoverModeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxis.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxis.cs index 053ac6b4..3cebae91 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxis.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib /// <summary> /// The XAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class XAxis : IEquatable<XAxis> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/AutoRangeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/AutoRangeEnum.cs index aa3e15ea..f2d9ca32 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/AutoRangeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/AutoRangeEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// on a reversed axis. Using <c>reversed</c> applies autorange on both ends /// and reverses the axis direction. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoRangeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/AutoTypeNumbersEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/AutoTypeNumbersEnum.cs index 5110abf5..1f90fe5a 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/AutoTypeNumbersEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/AutoTypeNumbersEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// be treated as a number during automatic axis <c>type</c> detection. Defaults /// to layout.autotypenumbers. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoTypeNumbersEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/Autorangeoptions.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/Autorangeoptions.cs index 29afaf5d..11a547d9 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/Autorangeoptions.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/Autorangeoptions.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// <summary> /// The AutoRangeOptions class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class AutoRangeOptions : IEquatable<AutoRangeOptions> diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/CalendarEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/CalendarEnum.cs index 16e4d434..2d50f621 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/CalendarEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/CalendarEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// is a date axis. This does not set the calendar for interpreting data on /// this axis, that's specified in the trace or via the global <c>layout.calendar</c> /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CalendarEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/CategoryOrderEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/CategoryOrderEnum.cs index c8a50182..2a76692b 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/CategoryOrderEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/CategoryOrderEnum.cs @@ -22,7 +22,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// be determined by the numerical order of the values. Similarly, the order /// can be determined by the min, max, sum, mean or median of all the values. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CategoryOrderEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ExponentFormatEnum.cs index 9caa890c..d25b84af 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/MirrorEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/MirrorEnum.cs index 8d4b25d4..af1b4acf 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/MirrorEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/MirrorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// If <c>all</c>, axis lines are mirrored on all shared-axes subplots. If <c>allticks</c>, /// axis lines and ticks are mirrored on all shared-axes subplots. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum MirrorEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/RangeModeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/RangeModeEnum.cs index a583af47..30cd90dc 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/RangeModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/RangeModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// input data If <c>nonnegative</c>, the range is non-negative, regardless /// of the input data. Applies only to linear axes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum RangeModeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowExponentEnum.cs index 5662a239..dbe9c1a3 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowTickPrefixEnum.cs index 24607de4..fb300b87 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowTickSuffixEnum.cs index c0be4fbd..126f54d6 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickFont.cs index a9f9c5f8..9ced13bd 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickFormatStop.cs index 7095f1d6..a6cf4582 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickModeEnum.cs index bec02745..cf97aca4 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TicksEnum.cs index 676943e0..f9aeed02 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/Title.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/Title.cs index a5cea776..1d853b98 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TitleLib/Font.cs index 6f8c7a9d..4a551905 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TypeEnum.cs index 750f8b7f..fb8019ef 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/XAxisLib/TypeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.XAxisLib /// Sets the axis type. By default, plotly attempts to determined the axis type /// by looking into the data of the traces that referenced the axis in question. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxis.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxis.cs index 6f0a8227..b5cfbabf 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxis.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib /// <summary> /// The YAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class YAxis : IEquatable<YAxis> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/AutoRangeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/AutoRangeEnum.cs index 7b9f8a50..0e8e83a4 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/AutoRangeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/AutoRangeEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// on a reversed axis. Using <c>reversed</c> applies autorange on both ends /// and reverses the axis direction. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoRangeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/AutoTypeNumbersEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/AutoTypeNumbersEnum.cs index b9bd8f08..a0ea0b8d 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/AutoTypeNumbersEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/AutoTypeNumbersEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// be treated as a number during automatic axis <c>type</c> detection. Defaults /// to layout.autotypenumbers. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoTypeNumbersEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/Autorangeoptions.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/Autorangeoptions.cs index 4a41ecac..80b43f92 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/Autorangeoptions.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/Autorangeoptions.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// <summary> /// The AutoRangeOptions class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class AutoRangeOptions : IEquatable<AutoRangeOptions> diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/CalendarEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/CalendarEnum.cs index e7b9a6dc..83f64843 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/CalendarEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/CalendarEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// is a date axis. This does not set the calendar for interpreting data on /// this axis, that's specified in the trace or via the global <c>layout.calendar</c> /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CalendarEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/CategoryOrderEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/CategoryOrderEnum.cs index 331cee3e..a483424c 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/CategoryOrderEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/CategoryOrderEnum.cs @@ -22,7 +22,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// be determined by the numerical order of the values. Similarly, the order /// can be determined by the min, max, sum, mean or median of all the values. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CategoryOrderEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ExponentFormatEnum.cs index 2703704a..c49aab19 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/MirrorEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/MirrorEnum.cs index c57b5262..771efb7c 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/MirrorEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/MirrorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// If <c>all</c>, axis lines are mirrored on all shared-axes subplots. If <c>allticks</c>, /// axis lines and ticks are mirrored on all shared-axes subplots. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum MirrorEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/RangeModeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/RangeModeEnum.cs index 4f3c152e..e0424adf 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/RangeModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/RangeModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// input data If <c>nonnegative</c>, the range is non-negative, regardless /// of the input data. Applies only to linear axes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum RangeModeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowExponentEnum.cs index 984712e6..f1a9a4fc 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowTickPrefixEnum.cs index 11a0177a..a26bafd8 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowTickSuffixEnum.cs index ad9c56c5..5b800d83 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickFont.cs index 37c58852..3dace3e8 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickFormatStop.cs index ca682395..0b8736b8 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickModeEnum.cs index 81af9286..40af2fe7 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TicksEnum.cs index e90ef7b7..9fa29a84 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/Title.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/Title.cs index feff71d5..f37150b3 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TitleLib/Font.cs index b34ed03f..d8d030dc 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TypeEnum.cs index 8794a3ba..a0b3d8a1 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/YAxisLib/TypeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.YAxisLib /// Sets the axis type. By default, plotly attempts to determined the axis type /// by looking into the data of the traces that referenced the axis in question. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxis.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxis.cs index 2eb1887a..1c5c8512 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxis.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib /// <summary> /// The ZAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ZAxis : IEquatable<ZAxis> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/AutoRangeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/AutoRangeEnum.cs index ea04ae7c..5ed9b338 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/AutoRangeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/AutoRangeEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// on a reversed axis. Using <c>reversed</c> applies autorange on both ends /// and reverses the axis direction. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoRangeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/AutoTypeNumbersEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/AutoTypeNumbersEnum.cs index 2fb73357..3af50f72 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/AutoTypeNumbersEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/AutoTypeNumbersEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// be treated as a number during automatic axis <c>type</c> detection. Defaults /// to layout.autotypenumbers. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoTypeNumbersEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/Autorangeoptions.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/Autorangeoptions.cs index e8b273ad..8fb2c0cd 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/Autorangeoptions.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/Autorangeoptions.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// <summary> /// The AutoRangeOptions class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class AutoRangeOptions : IEquatable<AutoRangeOptions> diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/CalendarEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/CalendarEnum.cs index a5010afb..472c17e6 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/CalendarEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/CalendarEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// is a date axis. This does not set the calendar for interpreting data on /// this axis, that's specified in the trace or via the global <c>layout.calendar</c> /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CalendarEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/CategoryOrderEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/CategoryOrderEnum.cs index e69b7468..3e220131 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/CategoryOrderEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/CategoryOrderEnum.cs @@ -22,7 +22,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// be determined by the numerical order of the values. Similarly, the order /// can be determined by the min, max, sum, mean or median of all the values. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CategoryOrderEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ExponentFormatEnum.cs index 680bf105..8ce101a3 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/MirrorEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/MirrorEnum.cs index f23af6e6..eb0c0183 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/MirrorEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/MirrorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// If <c>all</c>, axis lines are mirrored on all shared-axes subplots. If <c>allticks</c>, /// axis lines and ticks are mirrored on all shared-axes subplots. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum MirrorEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/RangeModeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/RangeModeEnum.cs index 12052e48..0501052f 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/RangeModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/RangeModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// input data If <c>nonnegative</c>, the range is non-negative, regardless /// of the input data. Applies only to linear axes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum RangeModeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowExponentEnum.cs index b430bf4a..b218082b 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowTickPrefixEnum.cs index dcb86e4e..5e9e9b64 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowTickSuffixEnum.cs index 0344bcac..ea81a5d3 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickFont.cs index 4612bda7..6a4c39c3 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickFormatStop.cs index 524da84a..0edfdc14 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickModeEnum.cs index 3bce0e81..a5d91bcc 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TicksEnum.cs index 3e35d8c5..cde95a0d 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/Title.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/Title.cs index 72e3d5a5..d58bd42e 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TitleLib/Font.cs index 34f2f6aa..3eff1267 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TypeEnum.cs index c7cf4405..23052bd1 100644 --- a/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SceneLib/ZAxisLib/TypeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.SceneLib.ZAxisLib /// Sets the axis type. By default, plotly attempts to determined the axis type /// by looking into the data of the traces that referenced the axis in question. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/SelectDirectionEnum.cs b/Plotly.Blazor/LayoutLib/SelectDirectionEnum.cs index e51da3ba..22c58d66 100644 --- a/Plotly.Blazor/LayoutLib/SelectDirectionEnum.cs +++ b/Plotly.Blazor/LayoutLib/SelectDirectionEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib /// selection, <c>v</c> only vertical, <c>d</c> only diagonal and <c>any</c> /// sets no limit. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SelectDirectionEnum { diff --git a/Plotly.Blazor/LayoutLib/Selection.cs b/Plotly.Blazor/LayoutLib/Selection.cs index d78e9648..319102ca 100644 --- a/Plotly.Blazor/LayoutLib/Selection.cs +++ b/Plotly.Blazor/LayoutLib/Selection.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Selection class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selection : IEquatable<Selection> { diff --git a/Plotly.Blazor/LayoutLib/SelectionLib/Line.cs b/Plotly.Blazor/LayoutLib/SelectionLib/Line.cs index de3c7c91..3a49e5fa 100644 --- a/Plotly.Blazor/LayoutLib/SelectionLib/Line.cs +++ b/Plotly.Blazor/LayoutLib/SelectionLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SelectionLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/LayoutLib/SelectionLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/SelectionLib/TypeEnum.cs index c74aa1db..f6076cbe 100644 --- a/Plotly.Blazor/LayoutLib/SelectionLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SelectionLib/TypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SelectionLib /// and (<c>x0</c>,<c>y1</c>). If <c>path</c>, draw a custom SVG path using /// <c>path</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/Shape.cs b/Plotly.Blazor/LayoutLib/Shape.cs index 716e1728..42ec4ff4 100644 --- a/Plotly.Blazor/LayoutLib/Shape.cs +++ b/Plotly.Blazor/LayoutLib/Shape.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Shape class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Shape : IEquatable<Shape> { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/FillRuleEnum.cs b/Plotly.Blazor/LayoutLib/ShapeLib/FillRuleEnum.cs index e8647e4c..b7990bfa 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/FillRuleEnum.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/FillRuleEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib /// Determines which regions of complex paths constitute the interior. For more /// info please visit https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/fill-rule /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillRuleEnum { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/Label.cs b/Plotly.Blazor/LayoutLib/ShapeLib/Label.cs index 710e6b03..35026f84 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/Label.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/Label.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib /// <summary> /// The Label class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Label : IEquatable<Label> { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/Font.cs b/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/Font.cs index 29d5a128..8659ebe8 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib.LabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/TextPositionEnum.cs b/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/TextPositionEnum.cs index aa6cb420..d68658cd 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/TextPositionEnum.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/TextPositionEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib.LabelLib /// and <c>end</c>. Default: 'middle center' for rectangles, circles, /// and paths; <c>middle</c> for lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/XAnchorEnum.cs index 08b882ec..3881e33b 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/XAnchorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib.LabelLib /// and <c>xanchor</c> to <c>right</c> then the right-most portion of the label /// text lines up with the right-most edge of the shape. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/YAnchorEnum.cs index f1809db8..cb7e22fe 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/LabelLib/YAnchorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib.LabelLib /// and <c>yanchor</c> to <c>top</c> then the top-most portion of the label /// text lines up with the top-most edge of the shape. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/ShapeLib/LayerEnum.cs index 429e7ac1..e9f9bcd2 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/LayerEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib /// <summary> /// Specifies whether shapes are drawn below or above traces. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/LegendGroupTitle.cs b/Plotly.Blazor/LayoutLib/ShapeLib/LegendGroupTitle.cs index 79efe98d..32d810aa 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/LegendGroupTitle.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/LegendGroupTitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/LegendGroupTitleLib/Font.cs b/Plotly.Blazor/LayoutLib/ShapeLib/LegendGroupTitleLib/Font.cs index c3b9888b..a3b00038 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/LegendGroupTitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/LegendGroupTitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/Line.cs b/Plotly.Blazor/LayoutLib/ShapeLib/Line.cs index bdf07b27..65198e90 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/Line.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/ShapeLib/TypeEnum.cs index a28ef4dc..2de1c17a 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/TypeEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib /// with respect to the axes' sizing mode. If <c>path</c>, draw a custom /// SVG path using <c>path</c>. with respect to the axes' sizing mode. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/VisibleEnum.cs b/Plotly.Blazor/LayoutLib/ShapeLib/VisibleEnum.cs index e88d2539..1f2252f1 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/VisibleEnum.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib /// shape is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/XSizeModeEnum.cs b/Plotly.Blazor/LayoutLib/ShapeLib/XSizeModeEnum.cs index e419aaa3..324f89a6 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/XSizeModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/XSizeModeEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib /// This way, the shape can have a fixed width while maintaining a position /// relative to data or plot fraction. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XSizeModeEnum { diff --git a/Plotly.Blazor/LayoutLib/ShapeLib/YSizeModeEnum.cs b/Plotly.Blazor/LayoutLib/ShapeLib/YSizeModeEnum.cs index 1dc63043..6ff2cd1c 100644 --- a/Plotly.Blazor/LayoutLib/ShapeLib/YSizeModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/ShapeLib/YSizeModeEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.ShapeLib /// This way, the shape can have a fixed height while maintaining a position /// relative to data or plot fraction. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YSizeModeEnum { diff --git a/Plotly.Blazor/LayoutLib/Slider.cs b/Plotly.Blazor/LayoutLib/Slider.cs index 85a34533..2a519c05 100644 --- a/Plotly.Blazor/LayoutLib/Slider.cs +++ b/Plotly.Blazor/LayoutLib/Slider.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Slider class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Slider : IEquatable<Slider> { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/CurrentValue.cs b/Plotly.Blazor/LayoutLib/SliderLib/CurrentValue.cs index a2fee5de..251168ff 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/CurrentValue.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/CurrentValue.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib /// <summary> /// The CurrentValue class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class CurrentValue : IEquatable<CurrentValue> { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/CurrentValueLib/Font.cs b/Plotly.Blazor/LayoutLib/SliderLib/CurrentValueLib/Font.cs index f7000047..b1058595 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/CurrentValueLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/CurrentValueLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib.CurrentValueLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/CurrentValueLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/SliderLib/CurrentValueLib/XAnchorEnum.cs index afba99ee..6594bca2 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/CurrentValueLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/CurrentValueLib/XAnchorEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib.CurrentValueLib /// <summary> /// The alignment of the value readout relative to the length of the slider. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/Font.cs b/Plotly.Blazor/LayoutLib/SliderLib/Font.cs index cfb8b3a6..bda43721 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/LenModeEnum.cs b/Plotly.Blazor/LayoutLib/SliderLib/LenModeEnum.cs index 2323ecd0..b66ae289 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/LenModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/LenModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib /// Determines whether this slider length is set in units of plot <c>fraction</c> /// or in *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/Pad.cs b/Plotly.Blazor/LayoutLib/SliderLib/Pad.cs index 4075aad8..2cd9d40b 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/Pad.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/Pad.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib /// <summary> /// The Pad class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Pad : IEquatable<Pad> { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/Step.cs b/Plotly.Blazor/LayoutLib/SliderLib/Step.cs index 2404ded7..914b8356 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/Step.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/Step.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib /// <summary> /// The Step class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Step : IEquatable<Step> { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/StepLib/MethodEnum.cs b/Plotly.Blazor/LayoutLib/SliderLib/StepLib/MethodEnum.cs index 1d13c1f1..40c04317 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/StepLib/MethodEnum.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/StepLib/MethodEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib.StepLib /// This may be used to create a component interface and attach to slider events /// manually via JavaScript. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum MethodEnum { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/Transition.cs b/Plotly.Blazor/LayoutLib/SliderLib/Transition.cs index 5667210b..cc612480 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/Transition.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/Transition.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib /// <summary> /// The Transition class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Transition : IEquatable<Transition> { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/TransitionLib/EasingEnum.cs b/Plotly.Blazor/LayoutLib/SliderLib/TransitionLib/EasingEnum.cs index 61064765..fbcb5bf5 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/TransitionLib/EasingEnum.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/TransitionLib/EasingEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib.TransitionLib /// <summary> /// Sets the easing function of the slider transition /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum EasingEnum { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/SliderLib/XAnchorEnum.cs index c17e77f0..63c8c911 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/XAnchorEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib /// <c>x</c> position to the <c>left</c>, <c>center</c> or <c>right</c> of the /// range selector. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/SliderLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/SliderLib/YAnchorEnum.cs index 9308a17b..8b5694bd 100644 --- a/Plotly.Blazor/LayoutLib/SliderLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/SliderLib/YAnchorEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SliderLib /// position to the <c>top</c>, <c>middle</c> or <c>bottom</c> of the range /// selector. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/Smith.cs b/Plotly.Blazor/LayoutLib/Smith.cs index 68729614..eed276c9 100644 --- a/Plotly.Blazor/LayoutLib/Smith.cs +++ b/Plotly.Blazor/LayoutLib/Smith.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Smith class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Smith : IEquatable<Smith> { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/Domain.cs b/Plotly.Blazor/LayoutLib/SmithLib/Domain.cs index 8aab7f43..8d320cbc 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/Domain.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxis.cs b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxis.cs index 584f208c..97ba74b2 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxis.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib /// <summary> /// The ImaginaryAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ImaginaryAxis : IEquatable<ImaginaryAxis> { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/LayerEnum.cs index d4f120b3..fad4eced 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/LayerEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.ImaginaryAxisLib /// with <c>cliponaxis</c> set to <c>false</c> to show markers and/or text nodes /// above this axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/ShowTickPrefixEnum.cs index 8375fbd4..3f0486ed 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.ImaginaryAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/ShowTickSuffixEnum.cs index c8505b2d..66323896 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.ImaginaryAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/TickFont.cs index 219fe816..f565f316 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.ImaginaryAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/TicksEnum.cs index 56a3f67f..22d64d4e 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/ImaginaryAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.ImaginaryAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/RealAxis.cs b/Plotly.Blazor/LayoutLib/SmithLib/RealAxis.cs index 3b2004f0..e3896322 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/RealAxis.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/RealAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib /// <summary> /// The RealAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class RealAxis : IEquatable<RealAxis> { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/LayerEnum.cs index 000398a1..b50fb07d 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/LayerEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.RealAxisLib /// with <c>cliponaxis</c> set to <c>false</c> to show markers and/or text nodes /// above this axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/ShowTickPrefixEnum.cs index 22f67899..99a17546 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.RealAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/ShowTickSuffixEnum.cs index 72e629b8..c02dd18c 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.RealAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/SideEnum.cs b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/SideEnum.cs index 874e3ed5..43b2e8c8 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/SideEnum.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/SideEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.RealAxisLib /// <summary> /// Determines on which side of real axis line the tick and tick labels appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/TickFont.cs index b5b594b4..ee9cdd82 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.RealAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/TicksEnum.cs index 0de7e0c6..471a2410 100644 --- a/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/SmithLib/RealAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.SmithLib.RealAxisLib /// not drawn. If <c>top</c> (<c>bottom</c>), this axis' are drawn above /// (below) the axis line. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/Ternary.cs b/Plotly.Blazor/LayoutLib/Ternary.cs index e7841109..c836070a 100644 --- a/Plotly.Blazor/LayoutLib/Ternary.cs +++ b/Plotly.Blazor/LayoutLib/Ternary.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Ternary class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Ternary : IEquatable<Ternary> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxis.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxis.cs index 5843a899..8b99c978 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxis.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib /// <summary> /// The AAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class AAxis : IEquatable<AAxis> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ExponentFormatEnum.cs index 4df13cd8..a68ebde1 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/LayerEnum.cs index 85880630..60618856 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/LayerEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib /// with <c>cliponaxis</c> set to <c>false</c> to show markers and/or text nodes /// above this axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowExponentEnum.cs index b66afd0b..44c5e74b 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowTickPrefixEnum.cs index e26718a2..0b643e1f 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowTickSuffixEnum.cs index 3a9738dc..607272e4 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickFont.cs index b28524cb..46d4c84b 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickFormatStop.cs index d5a6baa1..09e3b728 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickModeEnum.cs index ef447ef4..1a6db0bc 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TicksEnum.cs index 482ae1e3..8b1b6cda 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/Title.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/Title.cs index 5a365796..72544c49 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TitleLib/Font.cs index 9b7d24f5..d360cc27 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/AAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.AAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxis.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxis.cs index 8c39f042..3f92f497 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxis.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib /// <summary> /// The BAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class BAxis : IEquatable<BAxis> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ExponentFormatEnum.cs index d21af764..41c4725e 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/LayerEnum.cs index 15ff50da..c8433884 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/LayerEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib /// with <c>cliponaxis</c> set to <c>false</c> to show markers and/or text nodes /// above this axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowExponentEnum.cs index 7ed29077..ee4717f7 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowTickPrefixEnum.cs index 04ef4cf2..860aca24 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowTickSuffixEnum.cs index 06ef68bd..7ed95221 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickFont.cs index b4881c05..49aee016 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickFormatStop.cs index a194bba2..cfa47cf8 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickModeEnum.cs index 739938d3..b205784a 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TicksEnum.cs index 608b03e3..440ba393 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/Title.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/Title.cs index efe6e948..afae10cd 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TitleLib/Font.cs index be2cdec8..85385d9a 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/BAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.BAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxis.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxis.cs index dcabf82f..dd3866c3 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxis.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib /// <summary> /// The CAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class CAxis : IEquatable<CAxis> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ExponentFormatEnum.cs index 70c8acec..dde25a9f 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/LayerEnum.cs index 09f1aae1..a7af312e 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/LayerEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib /// with <c>cliponaxis</c> set to <c>false</c> to show markers and/or text nodes /// above this axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowExponentEnum.cs index 984f1153..57cd53a3 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowTickPrefixEnum.cs index ddce87a3..dde891c0 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowTickSuffixEnum.cs index 88c2bcd9..cd0abea7 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickFont.cs index 69afa86b..f45925dc 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickFormatStop.cs index b3c76435..f7774ffd 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickModeEnum.cs index 0b768f9a..040f8a82 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TicksEnum.cs index e4da026b..3ff1eb37 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/Title.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/Title.cs index 761e8b9a..eed019ea 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TitleLib/Font.cs index 7398625d..3ea210ec 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/CAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib.CAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/TernaryLib/Domain.cs b/Plotly.Blazor/LayoutLib/TernaryLib/Domain.cs index 044700b1..fb7fb4c9 100644 --- a/Plotly.Blazor/LayoutLib/TernaryLib/Domain.cs +++ b/Plotly.Blazor/LayoutLib/TernaryLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.TernaryLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/LayoutLib/Title.cs b/Plotly.Blazor/LayoutLib/Title.cs index 9bc59855..22320e38 100644 --- a/Plotly.Blazor/LayoutLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/TitleLib/Font.cs index 7217d2c9..e1b63561 100644 --- a/Plotly.Blazor/LayoutLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/TitleLib/Pad.cs b/Plotly.Blazor/LayoutLib/TitleLib/Pad.cs index 590d58e4..3c5ddc36 100644 --- a/Plotly.Blazor/LayoutLib/TitleLib/Pad.cs +++ b/Plotly.Blazor/LayoutLib/TitleLib/Pad.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TitleLib /// <summary> /// The Pad class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Pad : IEquatable<Pad> { diff --git a/Plotly.Blazor/LayoutLib/TitleLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/TitleLib/XAnchorEnum.cs index c51e54c5..34a78acb 100644 --- a/Plotly.Blazor/LayoutLib/TitleLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/TitleLib/XAnchorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.TitleLib /// x. <c>auto</c> divides <c>xref</c> by three and calculates the <c>xanchor</c> /// value automatically based on the value of <c>x</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/TitleLib/XrefEnum.cs b/Plotly.Blazor/LayoutLib/TitleLib/XrefEnum.cs index c410a924..75183929 100644 --- a/Plotly.Blazor/LayoutLib/TitleLib/XrefEnum.cs +++ b/Plotly.Blazor/LayoutLib/TitleLib/XrefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TitleLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/LayoutLib/TitleLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/TitleLib/YAnchorEnum.cs index 1b546239..05e5417b 100644 --- a/Plotly.Blazor/LayoutLib/TitleLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/TitleLib/YAnchorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.TitleLib /// midline is at y. <c>auto</c> divides <c>yref</c> by three and calculates /// the <c>yanchor</c> value automatically based on the value of <c>y</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/TitleLib/YRefEnum.cs b/Plotly.Blazor/LayoutLib/TitleLib/YRefEnum.cs index e21910c6..9a673a4a 100644 --- a/Plotly.Blazor/LayoutLib/TitleLib/YRefEnum.cs +++ b/Plotly.Blazor/LayoutLib/TitleLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.TitleLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/LayoutLib/Transition.cs b/Plotly.Blazor/LayoutLib/Transition.cs index 95fa2bfd..cc8936e6 100644 --- a/Plotly.Blazor/LayoutLib/Transition.cs +++ b/Plotly.Blazor/LayoutLib/Transition.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The Transition class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Transition : IEquatable<Transition> { diff --git a/Plotly.Blazor/LayoutLib/TransitionLib/EasingEnum.cs b/Plotly.Blazor/LayoutLib/TransitionLib/EasingEnum.cs index b6e8f0b0..4ad361de 100644 --- a/Plotly.Blazor/LayoutLib/TransitionLib/EasingEnum.cs +++ b/Plotly.Blazor/LayoutLib/TransitionLib/EasingEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.TransitionLib /// <summary> /// The easing function used for the transition /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum EasingEnum { diff --git a/Plotly.Blazor/LayoutLib/TransitionLib/OrderingEnum.cs b/Plotly.Blazor/LayoutLib/TransitionLib/OrderingEnum.cs index d60639f9..47c0136d 100644 --- a/Plotly.Blazor/LayoutLib/TransitionLib/OrderingEnum.cs +++ b/Plotly.Blazor/LayoutLib/TransitionLib/OrderingEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.TransitionLib /// Determines whether the figure's layout or traces smoothly transitions /// during updates that make both traces and layout change. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrderingEnum { diff --git a/Plotly.Blazor/LayoutLib/UniformText.cs b/Plotly.Blazor/LayoutLib/UniformText.cs index 2124362c..85b8296a 100644 --- a/Plotly.Blazor/LayoutLib/UniformText.cs +++ b/Plotly.Blazor/LayoutLib/UniformText.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The UniformText class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class UniformText : IEquatable<UniformText> { diff --git a/Plotly.Blazor/LayoutLib/UniformTextLib/ModeEnum.cs b/Plotly.Blazor/LayoutLib/UniformTextLib/ModeEnum.cs index 765df8b8..38b1c26f 100644 --- a/Plotly.Blazor/LayoutLib/UniformTextLib/ModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/UniformTextLib/ModeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.UniformTextLib /// Please note that if the size defined by <c>minsize</c> is greater than the /// font size defined by trace, then the <c>minsize</c> is used. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ModeEnum { diff --git a/Plotly.Blazor/LayoutLib/UpdateMenu.cs b/Plotly.Blazor/LayoutLib/UpdateMenu.cs index a0450ef9..3726dc34 100644 --- a/Plotly.Blazor/LayoutLib/UpdateMenu.cs +++ b/Plotly.Blazor/LayoutLib/UpdateMenu.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The UpdateMenu class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class UpdateMenu : IEquatable<UpdateMenu> { diff --git a/Plotly.Blazor/LayoutLib/UpdateMenuLib/Button.cs b/Plotly.Blazor/LayoutLib/UpdateMenuLib/Button.cs index d8d3dfea..0fa8f123 100644 --- a/Plotly.Blazor/LayoutLib/UpdateMenuLib/Button.cs +++ b/Plotly.Blazor/LayoutLib/UpdateMenuLib/Button.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.UpdateMenuLib /// <summary> /// The Button class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Button : IEquatable<Button> { diff --git a/Plotly.Blazor/LayoutLib/UpdateMenuLib/ButtonLib/MethodEnum.cs b/Plotly.Blazor/LayoutLib/UpdateMenuLib/ButtonLib/MethodEnum.cs index d3abba0f..b3d06561 100644 --- a/Plotly.Blazor/LayoutLib/UpdateMenuLib/ButtonLib/MethodEnum.cs +++ b/Plotly.Blazor/LayoutLib/UpdateMenuLib/ButtonLib/MethodEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.UpdateMenuLib.ButtonLib /// used to create a component interface and attach to updatemenu events manually /// via JavaScript. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum MethodEnum { diff --git a/Plotly.Blazor/LayoutLib/UpdateMenuLib/DirectionEnum.cs b/Plotly.Blazor/LayoutLib/UpdateMenuLib/DirectionEnum.cs index 8fe07ff5..8a347015 100644 --- a/Plotly.Blazor/LayoutLib/UpdateMenuLib/DirectionEnum.cs +++ b/Plotly.Blazor/LayoutLib/UpdateMenuLib/DirectionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.UpdateMenuLib /// dropdown menu or a row/column of buttons. For <c>left</c> and <c>up</c>, /// the buttons will still appear in left-to-right or top-to-bottom order respectively. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DirectionEnum { diff --git a/Plotly.Blazor/LayoutLib/UpdateMenuLib/Font.cs b/Plotly.Blazor/LayoutLib/UpdateMenuLib/Font.cs index b41dbad6..ce51ab6b 100644 --- a/Plotly.Blazor/LayoutLib/UpdateMenuLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/UpdateMenuLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.UpdateMenuLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/UpdateMenuLib/Pad.cs b/Plotly.Blazor/LayoutLib/UpdateMenuLib/Pad.cs index efa2aaa6..b4a279b4 100644 --- a/Plotly.Blazor/LayoutLib/UpdateMenuLib/Pad.cs +++ b/Plotly.Blazor/LayoutLib/UpdateMenuLib/Pad.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.UpdateMenuLib /// <summary> /// The Pad class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Pad : IEquatable<Pad> { diff --git a/Plotly.Blazor/LayoutLib/UpdateMenuLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/UpdateMenuLib/TypeEnum.cs index 605722ec..062af2d9 100644 --- a/Plotly.Blazor/LayoutLib/UpdateMenuLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/UpdateMenuLib/TypeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.UpdateMenuLib /// Determines whether the buttons are accessible via a dropdown menu or whether /// the buttons are stacked horizontally or vertically /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/UpdateMenuLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/UpdateMenuLib/XAnchorEnum.cs index fd3fbc5d..7fe7cc20 100644 --- a/Plotly.Blazor/LayoutLib/UpdateMenuLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/UpdateMenuLib/XAnchorEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.UpdateMenuLib /// the <c>x</c> position to the <c>left</c>, <c>center</c> or <c>right</c> /// of the range selector. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/UpdateMenuLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/UpdateMenuLib/YAnchorEnum.cs index 568e43c0..9d5751df 100644 --- a/Plotly.Blazor/LayoutLib/UpdateMenuLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/UpdateMenuLib/YAnchorEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.UpdateMenuLib /// <c>y</c> position to the <c>top</c>, <c>middle</c> or <c>bottom</c> of the /// range selector. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/ViolinModeEnum.cs b/Plotly.Blazor/LayoutLib/ViolinModeEnum.cs index 4e037309..30cb297f 100644 --- a/Plotly.Blazor/LayoutLib/ViolinModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/ViolinModeEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// plotted over one another, you might need to set <c>opacity</c> to see them /// multiple violins. Has no effect on traces that have <c>width</c> set. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ViolinModeEnum { diff --git a/Plotly.Blazor/LayoutLib/WaterfallModeEnum.cs b/Plotly.Blazor/LayoutLib/WaterfallModeEnum.cs index 444edd72..f52b3c90 100644 --- a/Plotly.Blazor/LayoutLib/WaterfallModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/WaterfallModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib /// around the shared location. With <c>overlay</c>, the bars are plotted over /// one another, you might need to reduce <c>opacity</c> to see multiple bars. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum WaterfallModeEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxis.cs b/Plotly.Blazor/LayoutLib/XAxis.cs index 2262053a..659f7582 100644 --- a/Plotly.Blazor/LayoutLib/XAxis.cs +++ b/Plotly.Blazor/LayoutLib/XAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The XAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class XAxis : IEquatable<XAxis> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/AutoMarginFlag.cs b/Plotly.Blazor/LayoutLib/XAxisLib/AutoMarginFlag.cs index ad4a8c15..aa1082ff 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/AutoMarginFlag.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/AutoMarginFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <summary> /// Determines whether long tick labels automatically grow the figure margins. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum AutoMarginFlag diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/AutoRangeEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/AutoRangeEnum.cs index a434872f..86337038 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/AutoRangeEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/AutoRangeEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// on a reversed axis. Using <c>reversed</c> applies autorange on both ends /// and reverses the axis direction. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoRangeEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/AutoTypeNumbersEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/AutoTypeNumbersEnum.cs index 1e4182b3..a3a65e8f 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/AutoTypeNumbersEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/AutoTypeNumbersEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// be treated as a number during automatic axis <c>type</c> detection. Defaults /// to layout.autotypenumbers. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoTypeNumbersEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/Autorangeoptions.cs b/Plotly.Blazor/LayoutLib/XAxisLib/Autorangeoptions.cs index cf02a610..2f523094 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/Autorangeoptions.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/Autorangeoptions.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <summary> /// The AutoRangeOptions class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class AutoRangeOptions : IEquatable<AutoRangeOptions> diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/CalendarEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/CalendarEnum.cs index b50ac4c0..17dcfa26 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/CalendarEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/CalendarEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// is a date axis. This does not set the calendar for interpreting data on /// this axis, that's specified in the trace or via the global <c>layout.calendar</c> /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CalendarEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/CategoryOrderEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/CategoryOrderEnum.cs index 788367a4..afad762a 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/CategoryOrderEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/CategoryOrderEnum.cs @@ -22,7 +22,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// be determined by the numerical order of the values. Similarly, the order /// can be determined by the min, max, sum, mean or median of all the values. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CategoryOrderEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/ConstrainEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/ConstrainEnum.cs index b313ee41..26f65ab7 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/ConstrainEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/ConstrainEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// by increasing the <c>range</c>, or by decreasing the <c>domain</c>. Default /// is <c>domain</c> for axes containing image traces, <c>range</c> otherwise. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ConstrainEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/ConstrainTowardEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/ConstrainTowardEnum.cs index a7b1045e..719dd464 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/ConstrainTowardEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/ConstrainTowardEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// (default), and <c>right</c> for x axes, and <c>top</c>, <c>middle</c> (default), /// and <c>bottom</c> for y axes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ConstrainTowardEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/ExponentFormatEnum.cs index 9a5a375d..1b47a415 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/LayerEnum.cs index 4e4704a1..7b9cf25c 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/LayerEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// with <c>cliponaxis</c> set to <c>false</c> to show markers and/or text nodes /// above this axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/Minor.cs b/Plotly.Blazor/LayoutLib/XAxisLib/Minor.cs index 4cee9710..1b52d961 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/Minor.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/Minor.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <summary> /// The Minor class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Minor : IEquatable<Minor> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/MinorLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/MinorLib/TickModeEnum.cs index 821c43c6..4c8ec0bd 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/MinorLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/MinorLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.MinorLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/MinorLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/MinorLib/TicksEnum.cs index b2bcdc04..952ea1fe 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/MinorLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/MinorLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.MinorLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/MirrorEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/MirrorEnum.cs index c7bc552b..e34023ea 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/MirrorEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/MirrorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// If <c>all</c>, axis lines are mirrored on all shared-axes subplots. If <c>allticks</c>, /// axis lines and ticks are mirrored on all shared-axes subplots. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum MirrorEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeBreak.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeBreak.cs index 15a5b416..3f830dcd 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeBreak.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeBreak.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <summary> /// The RangeBreak class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class RangeBreak : IEquatable<RangeBreak> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeBreakLib/PatternEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeBreakLib/PatternEnum.cs index 235c85a1..30b341b3 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeBreakLib/PatternEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeBreakLib/PatternEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.RangeBreakLib /// the weekends). - { pattern: <c>hour</c>, bounds: [17, 8] } breaks from /// 5pm to 8am (i.e. skips non-work hours). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum PatternEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeModeEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeModeEnum.cs index 5452c054..560d5b10 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// input data If <c>nonnegative</c>, the range is non-negative, regardless /// of the input data. Applies only to linear axes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum RangeModeEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelector.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelector.cs index 30a50684..0650db40 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelector.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelector.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <summary> /// The RangeSelector class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class RangeSelector : IEquatable<RangeSelector> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/Button.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/Button.cs index 57e4959e..2cce9db3 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/Button.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/Button.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.RangeSelectorLib /// <summary> /// The Button class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Button : IEquatable<Button> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/ButtonLib/StepEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/ButtonLib/StepEnum.cs index a8b071dd..ec483639 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/ButtonLib/StepEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/ButtonLib/StepEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.RangeSelectorLib.ButtonLib /// <summary> /// The unit of measurement that the <c>count</c> value will set the range by. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum StepEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/ButtonLib/StepModeEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/ButtonLib/StepModeEnum.cs index 59a459a5..2c0fb3df 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/ButtonLib/StepModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/ButtonLib/StepModeEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.RangeSelectorLib.ButtonLib /// year. Month and year <c>todate</c> are currently available only for the /// built-in (Gregorian) calendar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum StepModeEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/Font.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/Font.cs index 7305bb2d..260688b1 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.RangeSelectorLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/XAnchorEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/XAnchorEnum.cs index 00e1a68c..7f4e85a7 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/XAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/XAnchorEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.RangeSelectorLib /// the <c>x</c> position to the <c>left</c>, <c>center</c> or <c>right</c> /// of the range selector. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/YAnchorEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/YAnchorEnum.cs index 5025802e..6da2eeb4 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/YAnchorEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSelectorLib/YAnchorEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.RangeSelectorLib /// the <c>y</c> position to the <c>top</c>, <c>middle</c> or <c>bottom</c> /// of the range selector. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSlider.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSlider.cs index 8739d746..ae57835d 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSlider.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSlider.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <summary> /// The RangeSlider class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class RangeSlider : IEquatable<RangeSlider> diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSliderLib/YAxis.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSliderLib/YAxis.cs index 734d5b54..885949c6 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSliderLib/YAxis.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSliderLib/YAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.RangeSliderLib /// <summary> /// The YAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class YAxis : IEquatable<YAxis> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSliderLib/YAxisLib/RangeModeEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSliderLib/YAxisLib/RangeModeEnum.cs index a9bda7f6..8577d5b7 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/RangeSliderLib/YAxisLib/RangeModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/RangeSliderLib/YAxisLib/RangeModeEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.RangeSliderLib.YAxisLib /// <c>match</c>, the current range of the corresponding y-axis on the main /// subplot is used. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum RangeModeEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/ShowExponentEnum.cs index c7cf86d8..22d97842 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/ShowTickPrefixEnum.cs index 4bc159b9..9164eac5 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/ShowTickSuffixEnum.cs index b153b5df..044bbfe8 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/SideEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/SideEnum.cs index 3523a13f..0b2a3db0 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/SideEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/SideEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// Determines whether a x (y) axis is positioned at the <c>bottom</c> (<c>left</c>) /// or <c>top</c> (<c>right</c>) of the plotting area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/SpikeModeFlag.cs b/Plotly.Blazor/LayoutLib/XAxisLib/SpikeModeFlag.cs index b4fa97b6..a3e86e6e 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/SpikeModeFlag.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/SpikeModeFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// If <c>marker</c>, then a marker dot is drawn on the axis the series is plotted /// on /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum SpikeModeFlag diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/SpikeSnapEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/SpikeSnapEnum.cs index 376d701c..68b9218a 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/SpikeSnapEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/SpikeSnapEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// Determines whether spikelines are stuck to the cursor or to the closest /// datapoints. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SpikeSnapEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/XAxisLib/TickFont.cs index f00d261e..1a752ce3 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/XAxisLib/TickFormatStop.cs index efbd7a2e..d82feb10 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/TickLabelOverflowEnum.cs index 1f898df0..85fe90a1 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/TickLabelOverflowEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// axes the default is <c>allow</c>. In other cases the default is 'hide /// past div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/TickLabelPositionEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/TickLabelPositionEnum.cs index a22a249d..51733cee 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/TickLabelPositionEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// linked by <c>matches</c> or <c>scaleanchor</c>, no extra padding for inside /// labels would be added by autorange, so that the scales could match. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/TickModeEnum.cs index c2904218..9062ec1b 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/TickModeEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <c>tickvals</c> is provided). If <c>sync</c>, the number of ticks will sync /// with the overlayed axis set by <c>overlaying</c> property. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/TickSonEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/TickSonEnum.cs index 2ba19250..45233954 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/TickSonEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/TickSonEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// or <c>multicategory</c>. When set to <c>boundaries</c>, ticks and grid lines /// are drawn half a category to the left/bottom of labels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickSonEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/TicklabelmodeEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/TicklabelmodeEnum.cs index c0032817..3bb603d2 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/TicklabelmodeEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/TicklabelmodeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// When set to <c>period</c>, tick labels are drawn in the middle of the period /// between ticks. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelModeEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/TicksEnum.cs index bdbeda25..66d2c606 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/Title.cs b/Plotly.Blazor/LayoutLib/XAxisLib/Title.cs index 38aa1c3b..829825f4 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/XAxisLib/TitleLib/Font.cs index 42364e95..332b6eee 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/XAxisLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/XAxisLib/TypeEnum.cs index a102b524..eb75b125 100644 --- a/Plotly.Blazor/LayoutLib/XAxisLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/XAxisLib/TypeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.XAxisLib /// Sets the axis type. By default, plotly attempts to determined the axis type /// by looking into the data of the traces that referenced the axis in question. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxis.cs b/Plotly.Blazor/LayoutLib/YAxis.cs index 5f43034a..39669c22 100644 --- a/Plotly.Blazor/LayoutLib/YAxis.cs +++ b/Plotly.Blazor/LayoutLib/YAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib /// <summary> /// The YAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class YAxis : IEquatable<YAxis> { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/AutoMarginFlag.cs b/Plotly.Blazor/LayoutLib/YAxisLib/AutoMarginFlag.cs index 47dec0e9..83075ec1 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/AutoMarginFlag.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/AutoMarginFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// <summary> /// Determines whether long tick labels automatically grow the figure margins. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum AutoMarginFlag diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/AutoRangeEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/AutoRangeEnum.cs index 68bc10a9..157f38f8 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/AutoRangeEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/AutoRangeEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// on a reversed axis. Using <c>reversed</c> applies autorange on both ends /// and reverses the axis direction. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoRangeEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/AutoTypeNumbersEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/AutoTypeNumbersEnum.cs index 994c70df..7411cff2 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/AutoTypeNumbersEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/AutoTypeNumbersEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// be treated as a number during automatic axis <c>type</c> detection. Defaults /// to layout.autotypenumbers. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoTypeNumbersEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/Autorangeoptions.cs b/Plotly.Blazor/LayoutLib/YAxisLib/Autorangeoptions.cs index e4e59e58..97e34418 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/Autorangeoptions.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/Autorangeoptions.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// <summary> /// The AutoRangeOptions class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class AutoRangeOptions : IEquatable<AutoRangeOptions> diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/CalendarEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/CalendarEnum.cs index 25c673c4..e5bcc20c 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/CalendarEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/CalendarEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// is a date axis. This does not set the calendar for interpreting data on /// this axis, that's specified in the trace or via the global <c>layout.calendar</c> /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CalendarEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/CategoryOrderEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/CategoryOrderEnum.cs index 0b745dc9..0dbb8aa2 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/CategoryOrderEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/CategoryOrderEnum.cs @@ -22,7 +22,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// be determined by the numerical order of the values. Similarly, the order /// can be determined by the min, max, sum, mean or median of all the values. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CategoryOrderEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/ConstrainEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/ConstrainEnum.cs index 625216a7..b22db90d 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/ConstrainEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/ConstrainEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// by increasing the <c>range</c>, or by decreasing the <c>domain</c>. Default /// is <c>domain</c> for axes containing image traces, <c>range</c> otherwise. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ConstrainEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/ConstrainTowardEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/ConstrainTowardEnum.cs index a9676a8a..fcadf8b3 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/ConstrainTowardEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/ConstrainTowardEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// (default), and <c>right</c> for x axes, and <c>top</c>, <c>middle</c> (default), /// and <c>bottom</c> for y axes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ConstrainTowardEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/ExponentFormatEnum.cs index 661ce8ea..3f2ce7ba 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/LayerEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/LayerEnum.cs index d08c5e52..80ecce04 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/LayerEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/LayerEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// with <c>cliponaxis</c> set to <c>false</c> to show markers and/or text nodes /// above this axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LayerEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/Minor.cs b/Plotly.Blazor/LayoutLib/YAxisLib/Minor.cs index 556aadcf..1fdf2a63 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/Minor.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/Minor.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// <summary> /// The Minor class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Minor : IEquatable<Minor> { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/MinorLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/MinorLib/TickModeEnum.cs index c30d5cbf..6f4b178e 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/MinorLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/MinorLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib.MinorLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/MinorLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/MinorLib/TicksEnum.cs index 63c7ce98..0ca780ee 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/MinorLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/MinorLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib.MinorLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/MirrorEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/MirrorEnum.cs index 9492cc9f..c4937ff8 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/MirrorEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/MirrorEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// If <c>all</c>, axis lines are mirrored on all shared-axes subplots. If <c>allticks</c>, /// axis lines and ticks are mirrored on all shared-axes subplots. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum MirrorEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/RangeBreak.cs b/Plotly.Blazor/LayoutLib/YAxisLib/RangeBreak.cs index a36f95c5..0dcd37b0 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/RangeBreak.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/RangeBreak.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// <summary> /// The RangeBreak class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class RangeBreak : IEquatable<RangeBreak> { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/RangeBreakLib/PatternEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/RangeBreakLib/PatternEnum.cs index 4ef46c3e..ab900ac2 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/RangeBreakLib/PatternEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/RangeBreakLib/PatternEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib.RangeBreakLib /// the weekends). - { pattern: <c>hour</c>, bounds: [17, 8] } breaks from /// 5pm to 8am (i.e. skips non-work hours). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum PatternEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/RangeModeEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/RangeModeEnum.cs index 72028f9f..1e14e475 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/RangeModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/RangeModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// input data If <c>nonnegative</c>, the range is non-negative, regardless /// of the input data. Applies only to linear axes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum RangeModeEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/ShowExponentEnum.cs index 53f09602..b3b5b5a5 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/ShowTickPrefixEnum.cs index c5ca4043..fdd3a1f7 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/ShowTickSuffixEnum.cs index 6929c417..f795d3ad 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/SideEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/SideEnum.cs index b2bccf43..4d899220 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/SideEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/SideEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// Determines whether a x (y) axis is positioned at the <c>bottom</c> (<c>left</c>) /// or <c>top</c> (<c>right</c>) of the plotting area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/SpikeModeFlag.cs b/Plotly.Blazor/LayoutLib/YAxisLib/SpikeModeFlag.cs index 20d99515..db83e3ff 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/SpikeModeFlag.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/SpikeModeFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// If <c>marker</c>, then a marker dot is drawn on the axis the series is plotted /// on /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum SpikeModeFlag diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/SpikeSnapEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/SpikeSnapEnum.cs index a5f5fa33..d7b14b1c 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/SpikeSnapEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/SpikeSnapEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// Determines whether spikelines are stuck to the cursor or to the closest /// datapoints. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SpikeSnapEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/TickFont.cs b/Plotly.Blazor/LayoutLib/YAxisLib/TickFont.cs index e1b25625..357afc59 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/TickFont.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/TickFormatStop.cs b/Plotly.Blazor/LayoutLib/YAxisLib/TickFormatStop.cs index 3630090d..eb770166 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/TickLabelOverflowEnum.cs index 2e49c7ab..243a0f0c 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/TickLabelOverflowEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// axes the default is <c>allow</c>. In other cases the default is 'hide /// past div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/TickLabelPositionEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/TickLabelPositionEnum.cs index 2025221c..2c6f1203 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/TickLabelPositionEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// linked by <c>matches</c> or <c>scaleanchor</c>, no extra padding for inside /// labels would be added by autorange, so that the scales could match. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/TickModeEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/TickModeEnum.cs index 13145079..9e0ba7cd 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/TickModeEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// <c>tickvals</c> is provided). If <c>sync</c>, the number of ticks will sync /// with the overlayed axis set by <c>overlaying</c> property. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/TickSonEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/TickSonEnum.cs index 4df9c97f..0580ae8c 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/TickSonEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/TickSonEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// or <c>multicategory</c>. When set to <c>boundaries</c>, ticks and grid lines /// are drawn half a category to the left/bottom of labels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickSonEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/TicklabelmodeEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/TicklabelmodeEnum.cs index 97f63438..732e2f77 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/TicklabelmodeEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/TicklabelmodeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// When set to <c>period</c>, tick labels are drawn in the middle of the period /// between ticks. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelModeEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/TicksEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/TicksEnum.cs index 39808402..2d176568 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/TicksEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/Title.cs b/Plotly.Blazor/LayoutLib/YAxisLib/Title.cs index 9a0d0265..dfcee667 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/Title.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/TitleLib/Font.cs b/Plotly.Blazor/LayoutLib/YAxisLib/TitleLib/Font.cs index d665b177..c04adba6 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/LayoutLib/YAxisLib/TypeEnum.cs b/Plotly.Blazor/LayoutLib/YAxisLib/TypeEnum.cs index 2d839165..b8e04ab3 100644 --- a/Plotly.Blazor/LayoutLib/YAxisLib/TypeEnum.cs +++ b/Plotly.Blazor/LayoutLib/YAxisLib/TypeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.LayoutLib.YAxisLib /// Sets the axis type. By default, plotly attempts to determined the axis type /// by looking into the data of the traces that referenced the axis in question. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/PlotlyJsInterop.cs b/Plotly.Blazor/PlotlyJsInterop.cs index 8f8394c3..77f27def 100644 --- a/Plotly.Blazor/PlotlyJsInterop.cs +++ b/Plotly.Blazor/PlotlyJsInterop.cs @@ -225,7 +225,7 @@ public static async Task SubscribeHoverEvent(this IJSRuntime jsRuntime, DotNetOb { await jsRuntime.InvokeVoidAsync($"{PlotlyInterop}.subscribeHoverEvent", cancellationToken, objectReference, objectReference.Value.Id); } - + /// <summary> /// Can be used to subscribe to relayout events. /// </summary> diff --git a/Plotly.Blazor/TraceTypeEnum.cs b/Plotly.Blazor/TraceTypeEnum.cs index dcc5bfba..54d3dd7a 100644 --- a/Plotly.Blazor/TraceTypeEnum.cs +++ b/Plotly.Blazor/TraceTypeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor /// <summary> /// Determines the type of the trace. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TraceTypeEnum { diff --git a/Plotly.Blazor/Traces/Bar.cs b/Plotly.Blazor/Traces/Bar.cs index a2a0f17b..d87f24e8 100644 --- a/Plotly.Blazor/Traces/Bar.cs +++ b/Plotly.Blazor/Traces/Bar.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Bar class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Bar : ITrace, IEquatable<Bar> diff --git a/Plotly.Blazor/Traces/BarLib/ConstrainTextEnum.cs b/Plotly.Blazor/Traces/BarLib/ConstrainTextEnum.cs index ab106754..d869de8c 100644 --- a/Plotly.Blazor/Traces/BarLib/ConstrainTextEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/ConstrainTextEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarLib /// Constrain the size of text inside or outside a bar to be no larger than /// the bar itself. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ConstrainTextEnum { diff --git a/Plotly.Blazor/Traces/BarLib/ErrorX.cs b/Plotly.Blazor/Traces/BarLib/ErrorX.cs index 6c651168..30ca2047 100644 --- a/Plotly.Blazor/Traces/BarLib/ErrorX.cs +++ b/Plotly.Blazor/Traces/BarLib/ErrorX.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The ErrorX class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorX : IEquatable<ErrorX> { diff --git a/Plotly.Blazor/Traces/BarLib/ErrorXLib/TypeEnum.cs b/Plotly.Blazor/Traces/BarLib/ErrorXLib/TypeEnum.cs index 9db81610..f1027789 100644 --- a/Plotly.Blazor/Traces/BarLib/ErrorXLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/ErrorXLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.BarLib.ErrorXLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/BarLib/ErrorY.cs b/Plotly.Blazor/Traces/BarLib/ErrorY.cs index 93949817..5730fcf7 100644 --- a/Plotly.Blazor/Traces/BarLib/ErrorY.cs +++ b/Plotly.Blazor/Traces/BarLib/ErrorY.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The ErrorY class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorY : IEquatable<ErrorY> { diff --git a/Plotly.Blazor/Traces/BarLib/ErrorYLib/TypeEnum.cs b/Plotly.Blazor/Traces/BarLib/ErrorYLib/TypeEnum.cs index d9b3988a..a2ce5d64 100644 --- a/Plotly.Blazor/Traces/BarLib/ErrorYLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/ErrorYLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.BarLib.ErrorYLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/BarLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/BarLib/HoverInfoFlag.cs index b0f4b969..d51e57d6 100644 --- a/Plotly.Blazor/Traces/BarLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/BarLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/BarLib/HoverLabel.cs b/Plotly.Blazor/Traces/BarLib/HoverLabel.cs index f68a08c0..0ffb4120 100644 --- a/Plotly.Blazor/Traces/BarLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/BarLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/BarLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/BarLib/HoverLabelLib/AlignEnum.cs index d65d5969..810f2ed4 100644 --- a/Plotly.Blazor/Traces/BarLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/BarLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/BarLib/HoverLabelLib/Font.cs index 77db958e..dfed8cc2 100644 --- a/Plotly.Blazor/Traces/BarLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/BarLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/BarLib/InsideTextAnchorEnum.cs b/Plotly.Blazor/Traces/BarLib/InsideTextAnchorEnum.cs index 00b54ce8..6b4a3ca4 100644 --- a/Plotly.Blazor/Traces/BarLib/InsideTextAnchorEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/InsideTextAnchorEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarLib /// Determines if texts are kept at center or start/end points in <c>textposition</c> /// <c>inside</c> mode. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum InsideTextAnchorEnum { diff --git a/Plotly.Blazor/Traces/BarLib/InsideTextFont.cs b/Plotly.Blazor/Traces/BarLib/InsideTextFont.cs index 3f76dbc1..2a82f8c8 100644 --- a/Plotly.Blazor/Traces/BarLib/InsideTextFont.cs +++ b/Plotly.Blazor/Traces/BarLib/InsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The InsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class InsideTextFont : IEquatable<InsideTextFont> diff --git a/Plotly.Blazor/Traces/BarLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/BarLib/Legendgrouptitle.cs index 8633cca4..0b59b43f 100644 --- a/Plotly.Blazor/Traces/BarLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/BarLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/BarLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/BarLib/LegendgrouptitleLib/Font.cs index fd197ca3..ec1cf756 100644 --- a/Plotly.Blazor/Traces/BarLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/BarLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/BarLib/Marker.cs b/Plotly.Blazor/Traces/BarLib/Marker.cs index 57435418..df37d210 100644 --- a/Plotly.Blazor/Traces/BarLib/Marker.cs +++ b/Plotly.Blazor/Traces/BarLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBar.cs index 2f09fed7..cb108402 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 9c97e8fa..100d45e7 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/LenModeEnum.cs index b033a1ea..7c1dde22 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/OrientationEnum.cs index 4996aa73..2874b575 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index c36e9424..83776ef4 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 1c4859f4..d3246689 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index da42d08e..b2c4a4cd 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 92e0974f..248ebde0 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickFont.cs index 26bc2c1c..a12b0bc1 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 05c54788..96dd1e08 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 5de98785..7789e9e8 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 74bcbbb6..254cfd32 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickModeEnum.cs index d22ed518..5d6ce5e1 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TicksEnum.cs index c17c0f07..14752b3d 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/Title.cs index 52f3cb6c..60670f46 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 9b72c9f6..63d21741 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index e58df7a4..852b2bf8 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index bfb13fda..62e17ce7 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/XRefEnum.cs index 143be56c..bb097969 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index cb53b28b..8d700681 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/YRefEnum.cs index e0ad1ad7..f43f52d3 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/Line.cs index 5dc02513..00db489e 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/Pattern.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/Pattern.cs index 01b7a9b0..01bcdbff 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/Pattern.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/Pattern.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib /// <summary> /// The Pattern class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Pattern : IEquatable<Pattern> diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/PatternLib/FillModeEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/PatternLib/FillModeEnum.cs index db2ad8f0..9d02c02d 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/PatternLib/FillModeEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/PatternLib/FillModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.PatternLib /// Determines whether <c>marker.color</c> should be used as a default to <c>bgcolor</c> /// or a <c>fgcolor</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillModeEnum { diff --git a/Plotly.Blazor/Traces/BarLib/MarkerLib/PatternLib/ShapeEnum.cs b/Plotly.Blazor/Traces/BarLib/MarkerLib/PatternLib/ShapeEnum.cs index c0e7b51b..5940810e 100644 --- a/Plotly.Blazor/Traces/BarLib/MarkerLib/PatternLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/MarkerLib/PatternLib/ShapeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarLib.MarkerLib.PatternLib /// Sets the shape of the pattern fill. By default, no pattern is used for filling /// the area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/BarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/BarLib/OrientationEnum.cs index 9159eb5e..7f2ebbcb 100644 --- a/Plotly.Blazor/Traces/BarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/OrientationEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarLib /// Sets the orientation of the bars. With <c>v</c> (<c>h</c>), the value of /// the each bar spans along the vertical (horizontal). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/BarLib/OutsideTextFont.cs b/Plotly.Blazor/Traces/BarLib/OutsideTextFont.cs index 8985c61b..5c77ca0a 100644 --- a/Plotly.Blazor/Traces/BarLib/OutsideTextFont.cs +++ b/Plotly.Blazor/Traces/BarLib/OutsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The OutsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class OutsideTextFont : IEquatable<OutsideTextFont> diff --git a/Plotly.Blazor/Traces/BarLib/Selected.cs b/Plotly.Blazor/Traces/BarLib/Selected.cs index 7cb0aa6e..bbac9329 100644 --- a/Plotly.Blazor/Traces/BarLib/Selected.cs +++ b/Plotly.Blazor/Traces/BarLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/BarLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/BarLib/SelectedLib/Marker.cs index 73b45569..9e47f824 100644 --- a/Plotly.Blazor/Traces/BarLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/BarLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/BarLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/BarLib/SelectedLib/TextFont.cs index bd2c37b2..3c261944 100644 --- a/Plotly.Blazor/Traces/BarLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/BarLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/BarLib/Stream.cs b/Plotly.Blazor/Traces/BarLib/Stream.cs index 1dcd01d6..c01bb391 100644 --- a/Plotly.Blazor/Traces/BarLib/Stream.cs +++ b/Plotly.Blazor/Traces/BarLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/BarLib/TextFont.cs b/Plotly.Blazor/Traces/BarLib/TextFont.cs index f51aa4c9..18278a0f 100644 --- a/Plotly.Blazor/Traces/BarLib/TextFont.cs +++ b/Plotly.Blazor/Traces/BarLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/BarLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/BarLib/TextPositionEnum.cs index 0e2a23da..07bb6a60 100644 --- a/Plotly.Blazor/Traces/BarLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/TextPositionEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.BarLib /// is too small and no bar is stacked on this one the text is moved outside. /// If <c>none</c>, no text appears. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/BarLib/Unselected.cs b/Plotly.Blazor/Traces/BarLib/Unselected.cs index c005e24a..466cb7a1 100644 --- a/Plotly.Blazor/Traces/BarLib/Unselected.cs +++ b/Plotly.Blazor/Traces/BarLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/BarLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/BarLib/UnselectedLib/Marker.cs index 235a2f56..ebe82e73 100644 --- a/Plotly.Blazor/Traces/BarLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/BarLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/BarLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/BarLib/UnselectedLib/TextFont.cs index 978fa59a..40d8e831 100644 --- a/Plotly.Blazor/Traces/BarLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/BarLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/BarLib/VisibleEnum.cs b/Plotly.Blazor/Traces/BarLib/VisibleEnum.cs index bfad7dc9..20131b12 100644 --- a/Plotly.Blazor/Traces/BarLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/BarLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/BarLib/XCalendarEnum.cs index 0db65228..9145157a 100644 --- a/Plotly.Blazor/Traces/BarLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/BarLib/XPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/BarLib/XPeriodAlignmentEnum.cs index e8c97012..00828623 100644 --- a/Plotly.Blazor/Traces/BarLib/XPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/XPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the x axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/BarLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/BarLib/YCalendarEnum.cs index 00f19215..765ded23 100644 --- a/Plotly.Blazor/Traces/BarLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.BarLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/BarLib/YPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/BarLib/YPeriodAlignmentEnum.cs index cd52e5da..45199d4e 100644 --- a/Plotly.Blazor/Traces/BarLib/YPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/BarLib/YPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the y axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/BarPolar.cs b/Plotly.Blazor/Traces/BarPolar.cs index 71b1b366..72a62801 100644 --- a/Plotly.Blazor/Traces/BarPolar.cs +++ b/Plotly.Blazor/Traces/BarPolar.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The BarPolar class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class BarPolar : ITrace, IEquatable<BarPolar> diff --git a/Plotly.Blazor/Traces/BarPolarLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/BarPolarLib/HoverInfoFlag.cs index 8886e5b4..a4558b06 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/BarPolarLib/HoverLabel.cs b/Plotly.Blazor/Traces/BarPolarLib/HoverLabel.cs index 1036c19e..f974d97c 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/BarPolarLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/HoverLabelLib/AlignEnum.cs index 01b79eb9..b75acd75 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/BarPolarLib/HoverLabelLib/Font.cs index a74c7dba..90037a34 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/BarPolarLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/BarPolarLib/Legendgrouptitle.cs index d00ddc73..f4d3df8e 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/BarPolarLib/LegendgrouptitleLib/Font.cs index f5fa890a..37cb0777 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/Marker.cs b/Plotly.Blazor/Traces/BarPolarLib/Marker.cs index f81a6919..feee9b5a 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/Marker.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBar.cs index fb9f3791..9cdbffdc 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 9ba49d22..da17a8d9 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/LenModeEnum.cs index dbd292b7..2c507676 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/OrientationEnum.cs index d72b687f..38eb8afb 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 2b722ef4..b15af711 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index c8ddb176..07850a1c 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index 8cc8f987..76338f9d 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 61f55b27..8a054bda 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickFont.cs index 6b34df5c..3edad614 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickFormatStop.cs index b1192fd2..c44c02a8 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 97f59a99..6fed6237 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 2e40a4dc..2f313743 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 9aa3c56f..65327f15 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TicksEnum.cs index ebf7d489..e97c49a6 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/Title.cs index 701ae9c1..45c17259 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 4e41c928..ccb1b9a4 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 738119ea..1cfc05b0 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 1bebbfe6..ce3d22fd 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/XRefEnum.cs index ebed2340..5e371c96 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index 297e209c..a663b967 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/YRefEnum.cs index 03aafac7..a8a45c2b 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/Line.cs index 14500493..51920276 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/Pattern.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/Pattern.cs index 7e58467e..90c7f3cf 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/Pattern.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/Pattern.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib /// <summary> /// The Pattern class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Pattern : IEquatable<Pattern> diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/PatternLib/FillModeEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/PatternLib/FillModeEnum.cs index fe56660a..d00fb74b 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/PatternLib/FillModeEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/PatternLib/FillModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.PatternLib /// Determines whether <c>marker.color</c> should be used as a default to <c>bgcolor</c> /// or a <c>fgcolor</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillModeEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/PatternLib/ShapeEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/PatternLib/ShapeEnum.cs index d14c34c1..13b51bff 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/PatternLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/MarkerLib/PatternLib/ShapeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.MarkerLib.PatternLib /// Sets the shape of the pattern fill. By default, no pattern is used for filling /// the area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/Selected.cs b/Plotly.Blazor/Traces/BarPolarLib/Selected.cs index 660976b0..d0a87be8 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/Selected.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/BarPolarLib/SelectedLib/Marker.cs index d3511e95..b0642b8c 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/BarPolarLib/SelectedLib/TextFont.cs index 0f61a298..d76e6820 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/Stream.cs b/Plotly.Blazor/Traces/BarPolarLib/Stream.cs index 49304e6e..b352d905 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/Stream.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/ThetaUnitEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/ThetaUnitEnum.cs index 8b405983..dbdd8c70 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/ThetaUnitEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/ThetaUnitEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib /// Sets the unit of input <c>theta</c> values. Has an effect only when on <c>linear</c> /// angular axes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThetaUnitEnum { diff --git a/Plotly.Blazor/Traces/BarPolarLib/Unselected.cs b/Plotly.Blazor/Traces/BarPolarLib/Unselected.cs index 317e7645..bbaf3b1a 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/Unselected.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/BarPolarLib/UnselectedLib/Marker.cs index 2fa30f3e..7b550bb1 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/BarPolarLib/UnselectedLib/TextFont.cs index 5d6b9f75..bfc1a206 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/BarPolarLib/VisibleEnum.cs b/Plotly.Blazor/Traces/BarPolarLib/VisibleEnum.cs index 3b7dcddc..d3c8cd48 100644 --- a/Plotly.Blazor/Traces/BarPolarLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/BarPolarLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BarPolarLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Box.cs b/Plotly.Blazor/Traces/Box.cs index 07479c5d..c68e54db 100644 --- a/Plotly.Blazor/Traces/Box.cs +++ b/Plotly.Blazor/Traces/Box.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Box class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Box : ITrace, IEquatable<Box> diff --git a/Plotly.Blazor/Traces/BoxLib/BoxMeanEnum.cs b/Plotly.Blazor/Traces/BoxLib/BoxMeanEnum.cs index 3ef86185..7256f144 100644 --- a/Plotly.Blazor/Traces/BoxLib/BoxMeanEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/BoxMeanEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// is also drawn. Defaults to <c>true</c> when <c>mean</c> is set. Defaults /// to <c>sd</c> when <c>sd</c> is set Otherwise defaults to <c>false</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum BoxMeanEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/BoxPointsEnum.cs b/Plotly.Blazor/Traces/BoxLib/BoxPointsEnum.cs index 2799e94f..18d483bd 100644 --- a/Plotly.Blazor/Traces/BoxLib/BoxPointsEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/BoxPointsEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// is set. Defaults to <c>all</c> under the q1/median/q3 signature. Otherwise /// defaults to <c>outliers</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum BoxPointsEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/BoxLib/HoverInfoFlag.cs index dffef9fe..61d00172 100644 --- a/Plotly.Blazor/Traces/BoxLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/BoxLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/BoxLib/HoverLabel.cs b/Plotly.Blazor/Traces/BoxLib/HoverLabel.cs index 171a483a..11d04df9 100644 --- a/Plotly.Blazor/Traces/BoxLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/BoxLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/BoxLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/BoxLib/HoverLabelLib/AlignEnum.cs index 79050491..e7b714aa 100644 --- a/Plotly.Blazor/Traces/BoxLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BoxLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/BoxLib/HoverLabelLib/Font.cs index 4a0a7370..91bab022 100644 --- a/Plotly.Blazor/Traces/BoxLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/BoxLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.BoxLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/BoxLib/HoverOnFlag.cs b/Plotly.Blazor/Traces/BoxLib/HoverOnFlag.cs index 2b4a4f94..a69f643b 100644 --- a/Plotly.Blazor/Traces/BoxLib/HoverOnFlag.cs +++ b/Plotly.Blazor/Traces/BoxLib/HoverOnFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// <summary> /// Do the hover effects highlight individual boxes or sample points or both? /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverOnFlag diff --git a/Plotly.Blazor/Traces/BoxLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/BoxLib/Legendgrouptitle.cs index 1f0ae8f9..5a771928 100644 --- a/Plotly.Blazor/Traces/BoxLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/BoxLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/BoxLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/BoxLib/LegendgrouptitleLib/Font.cs index 5f062cee..23585157 100644 --- a/Plotly.Blazor/Traces/BoxLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/BoxLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/BoxLib/Line.cs b/Plotly.Blazor/Traces/BoxLib/Line.cs index 9d7c7157..44c2e612 100644 --- a/Plotly.Blazor/Traces/BoxLib/Line.cs +++ b/Plotly.Blazor/Traces/BoxLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/BoxLib/Marker.cs b/Plotly.Blazor/Traces/BoxLib/Marker.cs index c0f161e2..a360a54e 100644 --- a/Plotly.Blazor/Traces/BoxLib/Marker.cs +++ b/Plotly.Blazor/Traces/BoxLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/BoxLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/BoxLib/MarkerLib/Line.cs index 7808703b..c9dc3eda 100644 --- a/Plotly.Blazor/Traces/BoxLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/BoxLib/MarkerLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/BoxLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/BoxLib/MarkerLib/SymbolEnum.cs index 4ad48217..7125c354 100644 --- a/Plotly.Blazor/Traces/BoxLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BoxLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/OrientationEnum.cs b/Plotly.Blazor/Traces/BoxLib/OrientationEnum.cs index 3542cffd..ef50b85d 100644 --- a/Plotly.Blazor/Traces/BoxLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/OrientationEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// Sets the orientation of the box(es). If <c>v</c> (<c>h</c>), the distribution /// is visualized along the vertical (horizontal). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/QuartileMethodEnum.cs b/Plotly.Blazor/Traces/BoxLib/QuartileMethodEnum.cs index 00df917d..c2299ffc 100644 --- a/Plotly.Blazor/Traces/BoxLib/QuartileMethodEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/QuartileMethodEnum.cs @@ -20,7 +20,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// the median in both halves - Q1 is then the median of the lower half and /// Q3 the median of the upper half. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum QuartileMethodEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/Selected.cs b/Plotly.Blazor/Traces/BoxLib/Selected.cs index d0cbd399..1496b81d 100644 --- a/Plotly.Blazor/Traces/BoxLib/Selected.cs +++ b/Plotly.Blazor/Traces/BoxLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/BoxLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/BoxLib/SelectedLib/Marker.cs index 7147d03e..b220f1e4 100644 --- a/Plotly.Blazor/Traces/BoxLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/BoxLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/BoxLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/BoxLib/SizeModeEnum.cs index 78d4f7fc..908eee68 100644 --- a/Plotly.Blazor/Traces/BoxLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/SizeModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// Argument sdmultiple (default 1) to scale the box size So it could be drawn /// 1-stddev, 3-stddev etc /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/Stream.cs b/Plotly.Blazor/Traces/BoxLib/Stream.cs index b1e42ba6..26079272 100644 --- a/Plotly.Blazor/Traces/BoxLib/Stream.cs +++ b/Plotly.Blazor/Traces/BoxLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/BoxLib/Unselected.cs b/Plotly.Blazor/Traces/BoxLib/Unselected.cs index 4955f407..a77ba069 100644 --- a/Plotly.Blazor/Traces/BoxLib/Unselected.cs +++ b/Plotly.Blazor/Traces/BoxLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/BoxLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/BoxLib/UnselectedLib/Marker.cs index 793de75e..6a307033 100644 --- a/Plotly.Blazor/Traces/BoxLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/BoxLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/BoxLib/VisibleEnum.cs b/Plotly.Blazor/Traces/BoxLib/VisibleEnum.cs index e874721d..8f39d911 100644 --- a/Plotly.Blazor/Traces/BoxLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/BoxLib/XCalendarEnum.cs index d4de42c5..ec1998e4 100644 --- a/Plotly.Blazor/Traces/BoxLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/XPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/BoxLib/XPeriodAlignmentEnum.cs index 7cebdd70..73fb71dd 100644 --- a/Plotly.Blazor/Traces/BoxLib/XPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/XPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the x axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/BoxLib/YCalendarEnum.cs index fbe9327e..94533f72 100644 --- a/Plotly.Blazor/Traces/BoxLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/BoxLib/YPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/BoxLib/YPeriodAlignmentEnum.cs index 92fef307..8d760fd6 100644 --- a/Plotly.Blazor/Traces/BoxLib/YPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/BoxLib/YPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.BoxLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the y axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/Candlestick.cs b/Plotly.Blazor/Traces/Candlestick.cs index a69bea25..5918b5b9 100644 --- a/Plotly.Blazor/Traces/Candlestick.cs +++ b/Plotly.Blazor/Traces/Candlestick.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Candlestick class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Candlestick : ITrace, IEquatable<Candlestick> diff --git a/Plotly.Blazor/Traces/CandlestickLib/Decreasing.cs b/Plotly.Blazor/Traces/CandlestickLib/Decreasing.cs index ca536906..9a232e3a 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/Decreasing.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/Decreasing.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib /// <summary> /// The Decreasing class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Decreasing : IEquatable<Decreasing> { diff --git a/Plotly.Blazor/Traces/CandlestickLib/DecreasingLib/Line.cs b/Plotly.Blazor/Traces/CandlestickLib/DecreasingLib/Line.cs index 2e57a80b..c1fb1dcb 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/DecreasingLib/Line.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/DecreasingLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib.DecreasingLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/CandlestickLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/CandlestickLib/HoverInfoFlag.cs index 5ce038b7..c6d763e6 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/CandlestickLib/HoverLabel.cs b/Plotly.Blazor/Traces/CandlestickLib/HoverLabel.cs index 93b9ee09..c6db39f9 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/CandlestickLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/CandlestickLib/HoverLabelLib/AlignEnum.cs index dbc054fd..32a15867 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/CandlestickLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/CandlestickLib/HoverLabelLib/Font.cs index a6e568c0..e0a83da6 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/CandlestickLib/Increasing.cs b/Plotly.Blazor/Traces/CandlestickLib/Increasing.cs index 7a46f66e..342dae51 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/Increasing.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/Increasing.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib /// <summary> /// The Increasing class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Increasing : IEquatable<Increasing> { diff --git a/Plotly.Blazor/Traces/CandlestickLib/IncreasingLib/Line.cs b/Plotly.Blazor/Traces/CandlestickLib/IncreasingLib/Line.cs index 35a7c16f..ba9e2d45 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/IncreasingLib/Line.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/IncreasingLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib.IncreasingLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/CandlestickLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/CandlestickLib/Legendgrouptitle.cs index 57841388..80ce9ddd 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/CandlestickLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/CandlestickLib/LegendgrouptitleLib/Font.cs index 674ac8cc..ccbdc7cd 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/CandlestickLib/Line.cs b/Plotly.Blazor/Traces/CandlestickLib/Line.cs index e0ab0007..bc5d090a 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/Line.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/CandlestickLib/Stream.cs b/Plotly.Blazor/Traces/CandlestickLib/Stream.cs index cbd35d9e..0294b253 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/Stream.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/CandlestickLib/VisibleEnum.cs b/Plotly.Blazor/Traces/CandlestickLib/VisibleEnum.cs index 3f0416e2..eb4827bd 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/CandlestickLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/CandlestickLib/XCalendarEnum.cs index 7ca3f966..c9ecef43 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/CandlestickLib/XPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/CandlestickLib/XPeriodAlignmentEnum.cs index a5827875..bddda39e 100644 --- a/Plotly.Blazor/Traces/CandlestickLib/XPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/CandlestickLib/XPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.CandlestickLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the x axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/Carpet.cs b/Plotly.Blazor/Traces/Carpet.cs index 1db5911d..87f73009 100644 --- a/Plotly.Blazor/Traces/Carpet.cs +++ b/Plotly.Blazor/Traces/Carpet.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Carpet class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Carpet : ITrace, IEquatable<Carpet> diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxis.cs b/Plotly.Blazor/Traces/CarpetLib/AAxis.cs index 8189f495..56b896e9 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxis.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.CarpetLib /// <summary> /// The AAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class AAxis : IEquatable<AAxis> { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/AutoRangeEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/AutoRangeEnum.cs index 779390da..6ceb4afc 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/AutoRangeEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/AutoRangeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// to the input data. See <c>rangemode</c> for more info. If <c>range</c> is /// provided, then <c>autorange</c> is set to <c>false</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoRangeEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/AutoTypeNumbersEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/AutoTypeNumbersEnum.cs index 97c50f9d..ff4294c5 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/AutoTypeNumbersEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/AutoTypeNumbersEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// be treated as a number during automatic axis <c>type</c> detection. Defaults /// to layout.autotypenumbers. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoTypeNumbersEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/CategoryOrderEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/CategoryOrderEnum.cs index 8688ca8b..df881c3f 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/CategoryOrderEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/CategoryOrderEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// that attribute will be identical to the <c>trace</c> mode. The unspecified /// categories will follow the categories in <c>categoryarray</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CategoryOrderEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/CheaterTypeEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/CheaterTypeEnum.cs index 30f13a49..81078f59 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/CheaterTypeEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/CheaterTypeEnum.cs @@ -10,7 +10,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib { /// <summary> /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CheaterTypeEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ExponentFormatEnum.cs index 2b0e1186..d6134a62 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/RangeModeEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/RangeModeEnum.cs index b205a28a..537d7d9e 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/RangeModeEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/RangeModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// input data If <c>nonnegative</c>, the range is non-negative, regardless /// of the input data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum RangeModeEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowExponentEnum.cs index e7f942e6..c9a757c9 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickLabelsEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickLabelsEnum.cs index ca144251..95980f99 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickLabelsEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickLabelsEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// Determines whether axis labels are drawn on the low side, the high side, /// both, or neither side of the axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickLabelsEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickPrefixEnum.cs index dc38da1d..c6e29f33 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickSuffixEnum.cs index 4b3f77cd..d77a3ff5 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickFont.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickFont.cs index 2ab5d0c0..bc754610 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickFont.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickFormatStop.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickFormatStop.cs index a2c64982..eb5f03a8 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickModeEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickModeEnum.cs index e701072f..2732dee2 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TickModeEnum.cs @@ -10,7 +10,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib { /// <summary> /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/Title.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/Title.cs index 7e0c0d01..6b9f7cba 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/Title.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TitleLib/Font.cs index ded3ff9e..40e1e379 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TypeEnum.cs b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TypeEnum.cs index 7e4486e4..78418ab2 100644 --- a/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/AAxisLib/TypeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.AAxisLib /// Sets the axis type. By default, plotly attempts to determined the axis type /// by looking into the data of the traces that referenced the axis in question. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxis.cs b/Plotly.Blazor/Traces/CarpetLib/BAxis.cs index f39124ee..4975ad40 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxis.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.CarpetLib /// <summary> /// The BAxis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class BAxis : IEquatable<BAxis> { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/AutoRangeEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/AutoRangeEnum.cs index e23a67ba..3ce245c2 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/AutoRangeEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/AutoRangeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// to the input data. See <c>rangemode</c> for more info. If <c>range</c> is /// provided, then <c>autorange</c> is set to <c>false</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoRangeEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/AutoTypeNumbersEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/AutoTypeNumbersEnum.cs index 39e0625a..98daed66 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/AutoTypeNumbersEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/AutoTypeNumbersEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// be treated as a number during automatic axis <c>type</c> detection. Defaults /// to layout.autotypenumbers. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AutoTypeNumbersEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/CategoryOrderEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/CategoryOrderEnum.cs index 3bd74feb..d07d4271 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/CategoryOrderEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/CategoryOrderEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// that attribute will be identical to the <c>trace</c> mode. The unspecified /// categories will follow the categories in <c>categoryarray</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CategoryOrderEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/CheaterTypeEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/CheaterTypeEnum.cs index ab5bcfcc..0d9cac3c 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/CheaterTypeEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/CheaterTypeEnum.cs @@ -10,7 +10,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib { /// <summary> /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CheaterTypeEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ExponentFormatEnum.cs index cf0a6eee..674602f6 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/RangeModeEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/RangeModeEnum.cs index 0d17b11e..0ba71d84 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/RangeModeEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/RangeModeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// input data If <c>nonnegative</c>, the range is non-negative, regardless /// of the input data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum RangeModeEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowExponentEnum.cs index fdc1efca..8b3bc184 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickLabelsEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickLabelsEnum.cs index 87eb7a62..2a064df3 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickLabelsEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickLabelsEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// Determines whether axis labels are drawn on the low side, the high side, /// both, or neither side of the axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickLabelsEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickPrefixEnum.cs index 9ef9711f..acfae62c 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickSuffixEnum.cs index 7b2261b0..73473718 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickFont.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickFont.cs index 6692bc95..4b8ef502 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickFont.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickFormatStop.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickFormatStop.cs index 1e6f0192..0cb0ef7e 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickModeEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickModeEnum.cs index f81a4f9c..263ca5c4 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TickModeEnum.cs @@ -10,7 +10,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib { /// <summary> /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/Title.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/Title.cs index fe57f6e0..7dc910d2 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/Title.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TitleLib/Font.cs index f43694b9..6b7dcb13 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TypeEnum.cs b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TypeEnum.cs index 52437698..3e3d5bac 100644 --- a/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/BAxisLib/TypeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.BAxisLib /// Sets the axis type. By default, plotly attempts to determined the axis type /// by looking into the data of the traces that referenced the axis in question. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/CarpetLib/Font.cs b/Plotly.Blazor/Traces/CarpetLib/Font.cs index ed5619a1..f9b940d9 100644 --- a/Plotly.Blazor/Traces/CarpetLib/Font.cs +++ b/Plotly.Blazor/Traces/CarpetLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/CarpetLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/CarpetLib/Legendgrouptitle.cs index cd74824d..b880a05f 100644 --- a/Plotly.Blazor/Traces/CarpetLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/CarpetLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/CarpetLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/CarpetLib/LegendgrouptitleLib/Font.cs index 0f8efdef..302b6ead 100644 --- a/Plotly.Blazor/Traces/CarpetLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/CarpetLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/CarpetLib/Stream.cs b/Plotly.Blazor/Traces/CarpetLib/Stream.cs index 8cee9ca3..21726aaa 100644 --- a/Plotly.Blazor/Traces/CarpetLib/Stream.cs +++ b/Plotly.Blazor/Traces/CarpetLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/CarpetLib/VisibleEnum.cs b/Plotly.Blazor/Traces/CarpetLib/VisibleEnum.cs index bac76f05..ef2eec88 100644 --- a/Plotly.Blazor/Traces/CarpetLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/CarpetLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.CarpetLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Choropleth.cs b/Plotly.Blazor/Traces/Choropleth.cs index 8f85bafa..7fac5d99 100644 --- a/Plotly.Blazor/Traces/Choropleth.cs +++ b/Plotly.Blazor/Traces/Choropleth.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Choropleth class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Choropleth : ITrace, IEquatable<Choropleth> diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBar.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBar.cs index 3604c528..3620dc61 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ExponentFormatEnum.cs index bc3b7f3d..dc30ac8e 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/LenModeEnum.cs index f1aab1db..f6570dce 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/OrientationEnum.cs index 03bc4868..71601e9d 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowExponentEnum.cs index 47d695ef..5b666cd7 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowTickPrefixEnum.cs index f9cff7c3..bf979325 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowTickSuffixEnum.cs index 56d7570c..00e3bec8 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ThicknessModeEnum.cs index 6ab63ab0..145e090b 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickFont.cs index b125c882..89fa759a 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickFormatStop.cs index 44f7a7c9..a4d9dd54 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickLabelOverflowEnum.cs index ca886265..1c575698 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickLabelPositionEnum.cs index 1f512f41..4bb7973d 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickModeEnum.cs index c12efb59..442bcd88 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TicksEnum.cs index 2dc5bbc1..538feeb9 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/Title.cs index 1a6e43d6..d90be4ab 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TitleLib/Font.cs index c2c5fb1a..421aface 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TitleLib/SideEnum.cs index 8ec839a8..2a8bb531 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/XAnchorEnum.cs index 6f2c80ba..621f7fde 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/XRefEnum.cs index 2545dd17..82c3b06e 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/YAnchorEnum.cs index 55c4175f..d2ac73bb 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/YRefEnum.cs index cc525566..bc6eb99b 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ChoroplethLib/HoverInfoFlag.cs index c3e300fe..c669c76b 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ChoroplethLib/HoverLabel.cs b/Plotly.Blazor/Traces/ChoroplethLib/HoverLabel.cs index a611e0f7..123cb82f 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ChoroplethLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/HoverLabelLib/AlignEnum.cs index 0a1dd6a9..746073b5 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ChoroplethLib/HoverLabelLib/Font.cs index 583e6179..61495839 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ChoroplethLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ChoroplethLib/Legendgrouptitle.cs index 61caccd0..4ff1a8b0 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ChoroplethLib/LegendgrouptitleLib/Font.cs index e202bd22..0953ff3e 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/LocationModeEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/LocationModeEnum.cs index ddb4c681..3e546541 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/LocationModeEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/LocationModeEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib /// corresponds to features from a custom GeoJSON linked to the <c>geojson</c> /// attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LocationModeEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/Marker.cs b/Plotly.Blazor/Traces/ChoroplethLib/Marker.cs index dcd0b82d..dff62192 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/Marker.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ChoroplethLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ChoroplethLib/MarkerLib/Line.cs index 2d0de6d4..8964ed1b 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ChoroplethLib/Selected.cs b/Plotly.Blazor/Traces/ChoroplethLib/Selected.cs index 0e5d8ea2..a6cfd664 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/Selected.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ChoroplethLib/SelectedLib/Marker.cs index 6c8d614f..83eda2cd 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/Stream.cs b/Plotly.Blazor/Traces/ChoroplethLib/Stream.cs index 5daadbc5..87f271bb 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/Stream.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/Unselected.cs b/Plotly.Blazor/Traces/ChoroplethLib/Unselected.cs index 45401de6..ab237c8f 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ChoroplethLib/UnselectedLib/Marker.cs index d811de28..38921114 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ChoroplethLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ChoroplethLib/VisibleEnum.cs index 07932b9e..73842d5e 100644 --- a/Plotly.Blazor/Traces/ChoroplethLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBox.cs b/Plotly.Blazor/Traces/ChoroplethMapBox.cs index 84284b10..1c117c1f 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBox.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBox.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ChoroplethMapBox class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ChoroplethMapBox : ITrace, IEquatable<ChoroplethMapBox> diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBar.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBar.cs index 579745a0..736f71de 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ExponentFormatEnum.cs index 0ebf4e44..bdacb0e4 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/LenModeEnum.cs index 333ca84d..7dae197b 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/OrientationEnum.cs index 973c7a1f..417a2a9b 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowExponentEnum.cs index 6022280d..9b42d804 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowTickPrefixEnum.cs index d59f5998..143cb924 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowTickSuffixEnum.cs index 20866309..2d737683 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ThicknessModeEnum.cs index 884ae52e..825f67f7 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickFont.cs index 27887bf1..72f31464 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickFormatStop.cs index 764fd3d7..ae28f06e 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickLabelOverflowEnum.cs index b1d9595b..4cfbc6a9 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickLabelPositionEnum.cs index 0969665f..1f10eb4b 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickModeEnum.cs index 40c61a43..3c02dbc5 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TicksEnum.cs index 6b05cacf..c7c1644d 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/Title.cs index db1c07fe..c14b60aa 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TitleLib/Font.cs index b651d6bd..a6fa4f70 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TitleLib/SideEnum.cs index 15b0989a..5d2ed63d 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/XAnchorEnum.cs index 49d5e7b9..d424930e 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/XRefEnum.cs index 16bcc795..31069deb 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/YAnchorEnum.cs index 3a1211fb..c0f0f7c1 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/YRefEnum.cs index 5a62974b..5296f327 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverInfoFlag.cs index 72f17c3f..10afa22a 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabel.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabel.cs index fca6316c..b8bb5101 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabelLib/AlignEnum.cs index 94ccd8d4..a1f9ae73 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabelLib/Font.cs index bb408800..e2fcf276 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Legendgrouptitle.cs index d8f543ab..b5d14704 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/LegendgrouptitleLib/Font.cs index 4c683330..a84104d3 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Marker.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Marker.cs index fcbf07ee..e823fb9d 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Marker.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/MarkerLib/Line.cs index a1c44565..9ebb601c 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Selected.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Selected.cs index 90663b38..0ff68680 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Selected.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/SelectedLib/Marker.cs index 345405c9..0b290e25 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Stream.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Stream.cs index fe961ae7..775439ed 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Stream.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Unselected.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Unselected.cs index 46fe773d..4a0a11f2 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/UnselectedLib/Marker.cs index 103de61a..65644e23 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/VisibleEnum.cs index b05f6a63..ca434a63 100644 --- a/Plotly.Blazor/Traces/ChoroplethMapBoxLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ChoroplethMapBoxLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ChoroplethMapBoxLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Cone.cs b/Plotly.Blazor/Traces/Cone.cs index e8a7b9c2..9cfaab15 100644 --- a/Plotly.Blazor/Traces/Cone.cs +++ b/Plotly.Blazor/Traces/Cone.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Cone class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Cone : ITrace, IEquatable<Cone> diff --git a/Plotly.Blazor/Traces/ConeLib/AnchorEnum.cs b/Plotly.Blazor/Traces/ConeLib/AnchorEnum.cs index 6daeddb7..93302a45 100644 --- a/Plotly.Blazor/Traces/ConeLib/AnchorEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/AnchorEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib /// <c>cm</c> denote the cone's center of mass which corresponds to 1/4 /// from the tail to tip. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AnchorEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBar.cs b/Plotly.Blazor/Traces/ConeLib/ColorBar.cs index d784d4d5..a0265af8 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ConeLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ExponentFormatEnum.cs index 4acf72d4..17d91d20 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/LenModeEnum.cs index f2a6fd97..6194fe12 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/OrientationEnum.cs index ef077c58..ba9e06e1 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowExponentEnum.cs index 003f872d..50344bc5 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowTickPrefixEnum.cs index 0f07fee9..42a8a013 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowTickSuffixEnum.cs index 12ae91a5..4f53e736 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ThicknessModeEnum.cs index bbc28668..8312f958 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickFont.cs index ba5bad8b..c91c3a6f 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickFormatStop.cs index b6741e25..b5bdbeda 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickLabelOverflowEnum.cs index ab0d670e..b4de3de2 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickLabelPositionEnum.cs index 219b484a..836de39a 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickModeEnum.cs index 0b31e6c2..d6934dc9 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TicksEnum.cs index cf7cde4b..36304585 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/Title.cs index aa11a847..fa33d17c 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TitleLib/Font.cs index bb4166ba..871eeae3 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TitleLib/SideEnum.cs index 84d6394d..ee2ab4c6 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/XAnchorEnum.cs index ba81729f..4e54b4d4 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/XRefEnum.cs index 7e174481..e9356aa6 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/YAnchorEnum.cs index ae06e4a4..c79f6011 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/YRefEnum.cs index 654e74c1..e9cbd3bb 100644 --- a/Plotly.Blazor/Traces/ConeLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ConeLib/HoverInfoFlag.cs index f42c2bed..3035eaee 100644 --- a/Plotly.Blazor/Traces/ConeLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ConeLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ConeLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ConeLib/HoverLabel.cs b/Plotly.Blazor/Traces/ConeLib/HoverLabel.cs index 3c846548..63b7476e 100644 --- a/Plotly.Blazor/Traces/ConeLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ConeLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ConeLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ConeLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ConeLib/HoverLabelLib/AlignEnum.cs index b39f66ce..9a0e5c23 100644 --- a/Plotly.Blazor/Traces/ConeLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ConeLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ConeLib/HoverLabelLib/Font.cs index d4e95ee3..3544007e 100644 --- a/Plotly.Blazor/Traces/ConeLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ConeLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ConeLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ConeLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ConeLib/Legendgrouptitle.cs index 9ae4b3c1..db944737 100644 --- a/Plotly.Blazor/Traces/ConeLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ConeLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ConeLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ConeLib/LegendgrouptitleLib/Font.cs index d1d55ac0..198f096e 100644 --- a/Plotly.Blazor/Traces/ConeLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ConeLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ConeLib/LightPosition.cs b/Plotly.Blazor/Traces/ConeLib/LightPosition.cs index 8906d3c9..24f85cfa 100644 --- a/Plotly.Blazor/Traces/ConeLib/LightPosition.cs +++ b/Plotly.Blazor/Traces/ConeLib/LightPosition.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib /// <summary> /// The LightPosition class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LightPosition : IEquatable<LightPosition> { diff --git a/Plotly.Blazor/Traces/ConeLib/Lighting.cs b/Plotly.Blazor/Traces/ConeLib/Lighting.cs index 7b6be9b0..8090bc19 100644 --- a/Plotly.Blazor/Traces/ConeLib/Lighting.cs +++ b/Plotly.Blazor/Traces/ConeLib/Lighting.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib /// <summary> /// The Lighting class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Lighting : IEquatable<Lighting> { diff --git a/Plotly.Blazor/Traces/ConeLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/ConeLib/SizeModeEnum.cs index 5d607c93..b5cda3c4 100644 --- a/Plotly.Blazor/Traces/ConeLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/SizeModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib /// scalar (normalized by the max u/v/w norm in the vector field) or as <c>absolute</c> /// value (in the same units as the vector field). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/ConeLib/Stream.cs b/Plotly.Blazor/Traces/ConeLib/Stream.cs index 37fb1226..3ce86189 100644 --- a/Plotly.Blazor/Traces/ConeLib/Stream.cs +++ b/Plotly.Blazor/Traces/ConeLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ConeLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ConeLib/VisibleEnum.cs index 555f914e..7419dc2d 100644 --- a/Plotly.Blazor/Traces/ConeLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ConeLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ConeLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Contour.cs b/Plotly.Blazor/Traces/Contour.cs index 9fdfe143..3eaac0cc 100644 --- a/Plotly.Blazor/Traces/Contour.cs +++ b/Plotly.Blazor/Traces/Contour.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Contour class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Contour : ITrace, IEquatable<Contour> diff --git a/Plotly.Blazor/Traces/ContourCarpet.cs b/Plotly.Blazor/Traces/ContourCarpet.cs index aa84fd1e..72b09689 100644 --- a/Plotly.Blazor/Traces/ContourCarpet.cs +++ b/Plotly.Blazor/Traces/ContourCarpet.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ContourCarpet class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ContourCarpet : ITrace, IEquatable<ContourCarpet> diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ATypeEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ATypeEnum.cs index ba9a74ae..e906ea1d 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ATypeEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ATypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib /// x coordinates are given by <c>x0</c> and <c>dx</c> (the default behavior /// when <c>x</c> is not provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ATypeEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/BTypeEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/BTypeEnum.cs index 1f3ca082..4787acd6 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/BTypeEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/BTypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib /// y coordinates are given by <c>y0</c> and <c>dy</c> (the default behavior /// when <c>y</c> is not provided) /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum BTypeEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBar.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBar.cs index 94ca5e14..b4a24f0b 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ExponentFormatEnum.cs index 94a7dd24..faa76e64 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/LenModeEnum.cs index ab89088a..af6f8ce4 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/OrientationEnum.cs index 0872fbcf..a61409d9 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowExponentEnum.cs index 4f6c133c..de2fc42e 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowTickPrefixEnum.cs index d95f3a34..7e2ed8ff 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowTickSuffixEnum.cs index 2da8d9f8..84c23c4a 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ThicknessModeEnum.cs index 4b781d36..ddb16787 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickFont.cs index e26a6f77..c10d7b0b 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickFormatStop.cs index 515e8e6d..0d68777a 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickLabelOverflowEnum.cs index 0dcaaf75..03d6a4d7 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickLabelPositionEnum.cs index 39dcafde..b3c661d5 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickModeEnum.cs index 614f7ec6..2f0a5b45 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TicksEnum.cs index 59524213..044a1c17 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/Title.cs index 652e422e..f81ec785 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TitleLib/Font.cs index 50763d24..7c171355 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TitleLib/SideEnum.cs index a05af6b2..7a539259 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/XAnchorEnum.cs index 5f9bd545..c75c8e5e 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/XRefEnum.cs index 39e35711..48c2487a 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/YAnchorEnum.cs index ae7db6fd..b0cd8675 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/YRefEnum.cs index 93a1a5fb..23155838 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/Contours.cs b/Plotly.Blazor/Traces/ContourCarpetLib/Contours.cs index 4640f8c1..954ef1a3 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/Contours.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/Contours.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib /// <summary> /// The Contours class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Contours : IEquatable<Contours> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/ColoringEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/ColoringEnum.cs index 992c03e1..9a14a11d 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/ColoringEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/ColoringEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ContoursLib /// is done on the contour lines. If <c>none</c>, no coloring is applied on /// this trace. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ColoringEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/LabelFont.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/LabelFont.cs index 8e731698..2e468d5f 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/LabelFont.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/LabelFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ContoursLib /// <summary> /// The LabelFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LabelFont : IEquatable<LabelFont> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/OperationEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/OperationEnum.cs index 9f4e1e33..f856f13d 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/OperationEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/OperationEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ContoursLib /// to value[1]` Open vs. closed intervals make no difference to constraint /// display, but all versions are allowed for consistency with filter transforms. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OperationEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/TypeEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/TypeEnum.cs index b34f1944..4177250f 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/ContoursLib/TypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.ContoursLib /// with the invalid region shaded as specified by the <c>operation</c> and /// <c>value</c> parameters. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ContourCarpetLib/Legendgrouptitle.cs index 2c739ece..5cd13867 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ContourCarpetLib/LegendgrouptitleLib/Font.cs index ef1fbfbd..f3f9cada 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/Line.cs b/Plotly.Blazor/Traces/ContourCarpetLib/Line.cs index b6c2c169..65f896d7 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/Line.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/Stream.cs b/Plotly.Blazor/Traces/ContourCarpetLib/Stream.cs index 7111fdbb..90247676 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/Stream.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ContourCarpetLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ContourCarpetLib/VisibleEnum.cs index 44b2fb87..83c432d5 100644 --- a/Plotly.Blazor/Traces/ContourCarpetLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ContourCarpetLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourCarpetLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBar.cs b/Plotly.Blazor/Traces/ContourLib/ColorBar.cs index 5ffea3ab..78195c47 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ExponentFormatEnum.cs index 2a869492..b32464c2 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/LenModeEnum.cs index 46d2e3e4..24f39972 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/OrientationEnum.cs index 47d35a28..5b2c42ab 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowExponentEnum.cs index f56d4f93..2e4337fa 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowTickPrefixEnum.cs index 8fe185e8..080a7e23 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowTickSuffixEnum.cs index 17846ac4..0cad573c 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ThicknessModeEnum.cs index 318a6ae2..1559a83e 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickFont.cs index bb18ea39..03f20aa3 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickFormatStop.cs index 12e01aef..08abc4a0 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickLabelOverflowEnum.cs index 9d149f86..06b7169a 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickLabelPositionEnum.cs index 7d51c2d8..428002e5 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickModeEnum.cs index 3a3ea09a..c5c1d75b 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TicksEnum.cs index ee62222f..6d838b37 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/Title.cs index 7a4ab5ed..460e13f3 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TitleLib/Font.cs index 0454bf61..5e371a0c 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TitleLib/SideEnum.cs index ebf0dee5..91d42bf9 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/XAnchorEnum.cs index 433b8b7b..b86268a1 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/XRefEnum.cs index bbe22240..2cdf5935 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/YAnchorEnum.cs index 362f7454..2bab4ca2 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/YRefEnum.cs index a5ccf1e6..dbc06462 100644 --- a/Plotly.Blazor/Traces/ContourLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/Contours.cs b/Plotly.Blazor/Traces/ContourLib/Contours.cs index b2b45163..14a5d7a1 100644 --- a/Plotly.Blazor/Traces/ContourLib/Contours.cs +++ b/Plotly.Blazor/Traces/ContourLib/Contours.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// <summary> /// The Contours class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Contours : IEquatable<Contours> { diff --git a/Plotly.Blazor/Traces/ContourLib/ContoursLib/ColoringEnum.cs b/Plotly.Blazor/Traces/ContourLib/ContoursLib/ColoringEnum.cs index dc9b5630..cd642861 100644 --- a/Plotly.Blazor/Traces/ContourLib/ContoursLib/ColoringEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ContoursLib/ColoringEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ContoursLib /// coloring is done on the contour lines. If <c>none</c>, no coloring is applied /// on this trace. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ColoringEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ContoursLib/LabelFont.cs b/Plotly.Blazor/Traces/ContourLib/ContoursLib/LabelFont.cs index 0bd2f65a..4bfa962a 100644 --- a/Plotly.Blazor/Traces/ContourLib/ContoursLib/LabelFont.cs +++ b/Plotly.Blazor/Traces/ContourLib/ContoursLib/LabelFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ContoursLib /// <summary> /// The LabelFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LabelFont : IEquatable<LabelFont> { diff --git a/Plotly.Blazor/Traces/ContourLib/ContoursLib/OperationEnum.cs b/Plotly.Blazor/Traces/ContourLib/ContoursLib/OperationEnum.cs index a1b28f12..d4ea4cfb 100644 --- a/Plotly.Blazor/Traces/ContourLib/ContoursLib/OperationEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ContoursLib/OperationEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ContoursLib /// to value[1]` Open vs. closed intervals make no difference to constraint /// display, but all versions are allowed for consistency with filter transforms. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OperationEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/ContoursLib/TypeEnum.cs b/Plotly.Blazor/Traces/ContourLib/ContoursLib/TypeEnum.cs index ae63e8e4..250e58fe 100644 --- a/Plotly.Blazor/Traces/ContourLib/ContoursLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/ContoursLib/TypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourLib.ContoursLib /// with the invalid region shaded as specified by the <c>operation</c> and /// <c>value</c> parameters. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ContourLib/HoverInfoFlag.cs index c79bb26a..fee7969a 100644 --- a/Plotly.Blazor/Traces/ContourLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ContourLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ContourLib/HoverLabel.cs b/Plotly.Blazor/Traces/ContourLib/HoverLabel.cs index 64a669ad..3c134c78 100644 --- a/Plotly.Blazor/Traces/ContourLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ContourLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ContourLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ContourLib/HoverLabelLib/AlignEnum.cs index 9dd6f91f..80f982cf 100644 --- a/Plotly.Blazor/Traces/ContourLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ContourLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ContourLib/HoverLabelLib/Font.cs index 34552014..1a7a78ef 100644 --- a/Plotly.Blazor/Traces/ContourLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ContourLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ContourLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ContourLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ContourLib/Legendgrouptitle.cs index 3923b84f..2df38fee 100644 --- a/Plotly.Blazor/Traces/ContourLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ContourLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ContourLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ContourLib/LegendgrouptitleLib/Font.cs index fdef0df6..c66aaeee 100644 --- a/Plotly.Blazor/Traces/ContourLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ContourLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ContourLib/Line.cs b/Plotly.Blazor/Traces/ContourLib/Line.cs index 27f55a42..35bf31c5 100644 --- a/Plotly.Blazor/Traces/ContourLib/Line.cs +++ b/Plotly.Blazor/Traces/ContourLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/ContourLib/Stream.cs b/Plotly.Blazor/Traces/ContourLib/Stream.cs index 050d980e..32104cd8 100644 --- a/Plotly.Blazor/Traces/ContourLib/Stream.cs +++ b/Plotly.Blazor/Traces/ContourLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ContourLib/TextFont.cs b/Plotly.Blazor/Traces/ContourLib/TextFont.cs index 9b976426..5880244e 100644 --- a/Plotly.Blazor/Traces/ContourLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ContourLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ContourLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ContourLib/VisibleEnum.cs index 8909a2b0..44f2574a 100644 --- a/Plotly.Blazor/Traces/ContourLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/ContourLib/XCalendarEnum.cs index 35f215fb..d6c6a2f7 100644 --- a/Plotly.Blazor/Traces/ContourLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/XPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/ContourLib/XPeriodAlignmentEnum.cs index 61bde6a9..46308625 100644 --- a/Plotly.Blazor/Traces/ContourLib/XPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/XPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the x axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/XTypeEnum.cs b/Plotly.Blazor/Traces/ContourLib/XTypeEnum.cs index ceb9e71e..ce7919a5 100644 --- a/Plotly.Blazor/Traces/ContourLib/XTypeEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/XTypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// x coordinates are given by <c>x0</c> and <c>dx</c> (the default behavior /// when <c>x</c> is not provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XTypeEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/ContourLib/YCalendarEnum.cs index 666c890e..a1cc1a0a 100644 --- a/Plotly.Blazor/Traces/ContourLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/YPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/ContourLib/YPeriodAlignmentEnum.cs index 7c4cf171..bd4764c7 100644 --- a/Plotly.Blazor/Traces/ContourLib/YPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/YPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the y axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/ContourLib/YTypeEnum.cs b/Plotly.Blazor/Traces/ContourLib/YTypeEnum.cs index 61f4f10b..f1cb84df 100644 --- a/Plotly.Blazor/Traces/ContourLib/YTypeEnum.cs +++ b/Plotly.Blazor/Traces/ContourLib/YTypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ContourLib /// y coordinates are given by <c>y0</c> and <c>dy</c> (the default behavior /// when <c>y</c> is not provided) /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YTypeEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBox.cs b/Plotly.Blazor/Traces/DensityMapBox.cs index 13a24108..67c06269 100644 --- a/Plotly.Blazor/Traces/DensityMapBox.cs +++ b/Plotly.Blazor/Traces/DensityMapBox.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The DensityMapBox class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class DensityMapBox : ITrace, IEquatable<DensityMapBox> diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBar.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBar.cs index f7598ea0..9e9aa138 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ExponentFormatEnum.cs index 91c6f786..96043566 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/LenModeEnum.cs index 13114766..8be03232 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/OrientationEnum.cs index efea1257..99c27c36 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowExponentEnum.cs index b0e857da..ad74c16c 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowTickPrefixEnum.cs index 3065c8b2..88858bbe 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowTickSuffixEnum.cs index 386ee405..949806ed 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ThicknessModeEnum.cs index f131c37e..ebab6e33 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickFont.cs index 91f3bd1a..d041d132 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickFormatStop.cs index 178d1506..8ac19fa3 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickLabelOverflowEnum.cs index 805d0261..7db9f470 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickLabelPositionEnum.cs index 172275b4..27931620 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickModeEnum.cs index 1d407a21..349ac669 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TicksEnum.cs index f3e006f1..2fa62158 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/Title.cs index ef6ed590..6ffe733c 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TitleLib/Font.cs index 0cac5dfd..136f48d9 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TitleLib/SideEnum.cs index c5f0aca8..7e099773 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/XAnchorEnum.cs index cea96bee..b5c3c1b0 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/XRefEnum.cs index 971d0706..e3c3a82c 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/YAnchorEnum.cs index ef2491fd..9b284dc5 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/YRefEnum.cs index a8ed1b50..0f4eec4a 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/HoverInfoFlag.cs index 91ea1676..ecd82eb0 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabel.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabel.cs index 123b2a83..1ae8fc32 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabelLib/AlignEnum.cs index 44ce3d68..b8a82fe3 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabelLib/Font.cs index e8e0e883..8e11f2fb 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/Legendgrouptitle.cs index 8f5a9cef..069177e1 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/LegendgrouptitleLib/Font.cs index cee048d5..91be69cf 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/Stream.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/Stream.cs index 4770c3f3..153b36be 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/Stream.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/DensityMapBoxLib/VisibleEnum.cs b/Plotly.Blazor/Traces/DensityMapBoxLib/VisibleEnum.cs index 7f07895a..c8af7387 100644 --- a/Plotly.Blazor/Traces/DensityMapBoxLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/DensityMapBoxLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.DensityMapBoxLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Funnel.cs b/Plotly.Blazor/Traces/Funnel.cs index 192ff931..20a3e27f 100644 --- a/Plotly.Blazor/Traces/Funnel.cs +++ b/Plotly.Blazor/Traces/Funnel.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Funnel class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Funnel : ITrace, IEquatable<Funnel> diff --git a/Plotly.Blazor/Traces/FunnelArea.cs b/Plotly.Blazor/Traces/FunnelArea.cs index 76dbca42..d03bb5c9 100644 --- a/Plotly.Blazor/Traces/FunnelArea.cs +++ b/Plotly.Blazor/Traces/FunnelArea.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The FunnelArea class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class FunnelArea : ITrace, IEquatable<FunnelArea> diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/Domain.cs b/Plotly.Blazor/Traces/FunnelAreaLib/Domain.cs index e457ec3f..2dd2b4b8 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/Domain.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/FunnelAreaLib/HoverInfoFlag.cs index 48728ba9..dbc35ea0 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabel.cs b/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabel.cs index 57b08d63..10792817 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabelLib/AlignEnum.cs index 50d3254a..2610b843 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabelLib/Font.cs index 3ff6b121..4f7e8082 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/InsideTextFont.cs b/Plotly.Blazor/Traces/FunnelAreaLib/InsideTextFont.cs index 682db949..8ceba290 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/InsideTextFont.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/InsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// <summary> /// The InsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class InsideTextFont : IEquatable<InsideTextFont> diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/FunnelAreaLib/Legendgrouptitle.cs index 1202069b..1d9582f0 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/FunnelAreaLib/LegendgrouptitleLib/Font.cs index a968e8e6..3a4c1c6c 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/Marker.cs b/Plotly.Blazor/Traces/FunnelAreaLib/Marker.cs index 02434fb7..4e3a350b 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/Marker.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/Line.cs index 0ad0c15c..3d240dd8 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/Pattern.cs b/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/Pattern.cs index 068659c8..bc048594 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/Pattern.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/Pattern.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib.MarkerLib /// <summary> /// The Pattern class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Pattern : IEquatable<Pattern> diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/PatternLib/FillModeEnum.cs b/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/PatternLib/FillModeEnum.cs index 1fb95d5d..fcd004e3 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/PatternLib/FillModeEnum.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/PatternLib/FillModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib.MarkerLib.PatternLib /// Determines whether <c>marker.color</c> should be used as a default to <c>bgcolor</c> /// or a <c>fgcolor</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillModeEnum { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/PatternLib/ShapeEnum.cs b/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/PatternLib/ShapeEnum.cs index 1297e16c..a97cb76e 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/PatternLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/MarkerLib/PatternLib/ShapeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib.MarkerLib.PatternLib /// Sets the shape of the pattern fill. By default, no pattern is used for filling /// the area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/Stream.cs b/Plotly.Blazor/Traces/FunnelAreaLib/Stream.cs index 456d7106..820714e5 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/Stream.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/TextFont.cs b/Plotly.Blazor/Traces/FunnelAreaLib/TextFont.cs index c16cc19a..62134d27 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/TextFont.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/TextInfoFlag.cs b/Plotly.Blazor/Traces/FunnelAreaLib/TextInfoFlag.cs index b624d7c2..53a0372c 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/TextInfoFlag.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/TextInfoFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// <summary> /// Determines which trace information appear on the graph. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum TextInfoFlag diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/FunnelAreaLib/TextPositionEnum.cs index 9e1fe855..ba1f19b8 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/TextPositionEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// <summary> /// Specifies the location of the <c>textinfo</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/Title.cs b/Plotly.Blazor/Traces/FunnelAreaLib/Title.cs index a2550724..2c231a12 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/Title.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/FunnelAreaLib/TitleLib/Font.cs index 786e6bd1..5a357f4a 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/TitleLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/TitleLib/PositionEnum.cs b/Plotly.Blazor/Traces/FunnelAreaLib/TitleLib/PositionEnum.cs index 193108b6..5784da54 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/TitleLib/PositionEnum.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/TitleLib/PositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib.TitleLib /// Specifies the location of the <c>title</c>. Note that the title's position /// used to be set by the now deprecated <c>titleposition</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum PositionEnum { diff --git a/Plotly.Blazor/Traces/FunnelAreaLib/VisibleEnum.cs b/Plotly.Blazor/Traces/FunnelAreaLib/VisibleEnum.cs index 2a8573ea..fc8a1d06 100644 --- a/Plotly.Blazor/Traces/FunnelAreaLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/FunnelAreaLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelAreaLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/Connector.cs b/Plotly.Blazor/Traces/FunnelLib/Connector.cs index 98ad36cc..c8b6ece9 100644 --- a/Plotly.Blazor/Traces/FunnelLib/Connector.cs +++ b/Plotly.Blazor/Traces/FunnelLib/Connector.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// <summary> /// The Connector class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Connector : IEquatable<Connector> { diff --git a/Plotly.Blazor/Traces/FunnelLib/ConnectorLib/Line.cs b/Plotly.Blazor/Traces/FunnelLib/ConnectorLib/Line.cs index f5edff90..99d3397a 100644 --- a/Plotly.Blazor/Traces/FunnelLib/ConnectorLib/Line.cs +++ b/Plotly.Blazor/Traces/FunnelLib/ConnectorLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.ConnectorLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/FunnelLib/ConstrainTextEnum.cs b/Plotly.Blazor/Traces/FunnelLib/ConstrainTextEnum.cs index f0509485..2298f305 100644 --- a/Plotly.Blazor/Traces/FunnelLib/ConstrainTextEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/ConstrainTextEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// Constrain the size of text inside or outside a bar to be no larger than /// the bar itself. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ConstrainTextEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/FunnelLib/HoverInfoFlag.cs index caa07693..af0f1500 100644 --- a/Plotly.Blazor/Traces/FunnelLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/FunnelLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/FunnelLib/HoverLabel.cs b/Plotly.Blazor/Traces/FunnelLib/HoverLabel.cs index 6adf12a7..3668758a 100644 --- a/Plotly.Blazor/Traces/FunnelLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/FunnelLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/FunnelLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/FunnelLib/HoverLabelLib/AlignEnum.cs index ae4c0fc8..cecf2b34 100644 --- a/Plotly.Blazor/Traces/FunnelLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/FunnelLib/HoverLabelLib/Font.cs index ac9de104..cbc9a278 100644 --- a/Plotly.Blazor/Traces/FunnelLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/FunnelLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/FunnelLib/InsideTextAnchorEnum.cs b/Plotly.Blazor/Traces/FunnelLib/InsideTextAnchorEnum.cs index 6bf160a0..07cce0f3 100644 --- a/Plotly.Blazor/Traces/FunnelLib/InsideTextAnchorEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/InsideTextAnchorEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// Determines if texts are kept at center or start/end points in <c>textposition</c> /// <c>inside</c> mode. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum InsideTextAnchorEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/InsideTextFont.cs b/Plotly.Blazor/Traces/FunnelLib/InsideTextFont.cs index b50ea46a..257e88db 100644 --- a/Plotly.Blazor/Traces/FunnelLib/InsideTextFont.cs +++ b/Plotly.Blazor/Traces/FunnelLib/InsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// <summary> /// The InsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class InsideTextFont : IEquatable<InsideTextFont> diff --git a/Plotly.Blazor/Traces/FunnelLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/FunnelLib/Legendgrouptitle.cs index 7b3db694..c247fdc4 100644 --- a/Plotly.Blazor/Traces/FunnelLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/FunnelLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/FunnelLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/FunnelLib/LegendgrouptitleLib/Font.cs index d26685f5..0ae4fc8b 100644 --- a/Plotly.Blazor/Traces/FunnelLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/FunnelLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/FunnelLib/Marker.cs b/Plotly.Blazor/Traces/FunnelLib/Marker.cs index bb9277d2..46b9da39 100644 --- a/Plotly.Blazor/Traces/FunnelLib/Marker.cs +++ b/Plotly.Blazor/Traces/FunnelLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBar.cs index 54162578..b1ebff40 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 6495c60b..82ab9ae8 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/LenModeEnum.cs index 27e80f95..45e05f51 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/OrientationEnum.cs index b9573b10..7eea2365 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 6e362f1f..fe6bd73e 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index be3f9315..ceef1e87 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index b235c3b5..5930d2bf 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 20b3cd20..d99e4282 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickFont.cs index a32a42a6..9b48df80 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickFormatStop.cs index fadfb775..0bd7f922 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 4ff2cf56..d7512e5e 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 23415b63..2c4ac1aa 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickModeEnum.cs index c3b0a316..db058cf8 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TicksEnum.cs index 03096b9f..776f9f7d 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/Title.cs index e71511b9..0fd7f872 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 55641d62..a0df4600 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 3aa652ea..fecb25b8 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 684b9691..f2a9a599 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/XRefEnum.cs index 2569cf41..b7ae6f0b 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index c2826cc3..7a07a3e3 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/YRefEnum.cs index 17c13a33..4750e87d 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/Line.cs index 95a05960..c932bdc2 100644 --- a/Plotly.Blazor/Traces/FunnelLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/FunnelLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/FunnelLib/OrientationEnum.cs b/Plotly.Blazor/Traces/FunnelLib/OrientationEnum.cs index 283402a1..a2f2700b 100644 --- a/Plotly.Blazor/Traces/FunnelLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/OrientationEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// <c>horizontal</c> funnels, <c>autorange</c> on the <c>y-axis</c> are set /// to <c>reversed</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/OutsideTextFont.cs b/Plotly.Blazor/Traces/FunnelLib/OutsideTextFont.cs index 21832db0..62ab686f 100644 --- a/Plotly.Blazor/Traces/FunnelLib/OutsideTextFont.cs +++ b/Plotly.Blazor/Traces/FunnelLib/OutsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// <summary> /// The OutsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class OutsideTextFont : IEquatable<OutsideTextFont> diff --git a/Plotly.Blazor/Traces/FunnelLib/Stream.cs b/Plotly.Blazor/Traces/FunnelLib/Stream.cs index 1c0de0f9..78206917 100644 --- a/Plotly.Blazor/Traces/FunnelLib/Stream.cs +++ b/Plotly.Blazor/Traces/FunnelLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/FunnelLib/TextFont.cs b/Plotly.Blazor/Traces/FunnelLib/TextFont.cs index fc50052a..68b708f5 100644 --- a/Plotly.Blazor/Traces/FunnelLib/TextFont.cs +++ b/Plotly.Blazor/Traces/FunnelLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/FunnelLib/TextInfoFlag.cs b/Plotly.Blazor/Traces/FunnelLib/TextInfoFlag.cs index 21a66ae6..d07b54fa 100644 --- a/Plotly.Blazor/Traces/FunnelLib/TextInfoFlag.cs +++ b/Plotly.Blazor/Traces/FunnelLib/TextInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// multiple funnels, percentages & totals are computed separately (per /// trace). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum TextInfoFlag diff --git a/Plotly.Blazor/Traces/FunnelLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/FunnelLib/TextPositionEnum.cs index 7e9b4e78..4c055e0c 100644 --- a/Plotly.Blazor/Traces/FunnelLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/TextPositionEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// is too small and no bar is stacked on this one the text is moved outside. /// If <c>none</c>, no text appears. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/VisibleEnum.cs b/Plotly.Blazor/Traces/FunnelLib/VisibleEnum.cs index d995a4eb..edfccd7f 100644 --- a/Plotly.Blazor/Traces/FunnelLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/XPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/FunnelLib/XPeriodAlignmentEnum.cs index 50eec02d..1720554e 100644 --- a/Plotly.Blazor/Traces/FunnelLib/XPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/XPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the x axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/FunnelLib/YPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/FunnelLib/YPeriodAlignmentEnum.cs index e2370793..d13a3d03 100644 --- a/Plotly.Blazor/Traces/FunnelLib/YPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/FunnelLib/YPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.FunnelLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the y axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/HeatMap.cs b/Plotly.Blazor/Traces/HeatMap.cs index 7ad0dd45..fb2a4e38 100644 --- a/Plotly.Blazor/Traces/HeatMap.cs +++ b/Plotly.Blazor/Traces/HeatMap.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The HeatMap class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HeatMap : ITrace, IEquatable<HeatMap> diff --git a/Plotly.Blazor/Traces/HeatMapGl.cs b/Plotly.Blazor/Traces/HeatMapGl.cs index 91c74a4d..498f53cc 100644 --- a/Plotly.Blazor/Traces/HeatMapGl.cs +++ b/Plotly.Blazor/Traces/HeatMapGl.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The HeatMapGl class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HeatMapGl : ITrace, IEquatable<HeatMapGl> diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBar.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBar.cs index 73c5eefa..6028d47a 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ExponentFormatEnum.cs index eaf73655..e9ebdc95 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/LenModeEnum.cs index b68ae9d7..35c9150b 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/OrientationEnum.cs index 9a7dcd83..2ff9a190 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowExponentEnum.cs index cbc591b4..9f8041e4 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowTickPrefixEnum.cs index 11d7f7ba..3ff7d7f4 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowTickSuffixEnum.cs index cc8a4dca..3250aca2 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ThicknessModeEnum.cs index 11b302db..35714962 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickFont.cs index 99293e16..fe03d150 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickFormatStop.cs index 035f482b..aa580848 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickLabelOverflowEnum.cs index 4e7b7819..d0fee00d 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickLabelPositionEnum.cs index d1aa2fa3..4bee0acb 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickModeEnum.cs index bae4dfb4..20f3bb8e 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TicksEnum.cs index 06fc2335..c4cffb8e 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/Title.cs index 411538f1..9af021c5 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TitleLib/Font.cs index a9157a8e..c2cc8be9 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TitleLib/SideEnum.cs index 959f1435..6f59b1fd 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/XAnchorEnum.cs index b37b8310..8586506f 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/XRefEnum.cs index 6944d3ed..28e9c5eb 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/YAnchorEnum.cs index f861b49b..63732a64 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/YRefEnum.cs index a18ee707..7536cab0 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/HeatMapGlLib/HoverInfoFlag.cs index 281adb29..a760167b 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabel.cs b/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabel.cs index f0eb4618..451e80bc 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabelLib/AlignEnum.cs index 0d621ea8..11fe1e77 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabelLib/Font.cs index 477eaa7c..c8b30f19 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/HeatMapGlLib/Legendgrouptitle.cs index cd4e068a..16233f16 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/HeatMapGlLib/LegendgrouptitleLib/Font.cs index 070063c1..6f3583df 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/Stream.cs b/Plotly.Blazor/Traces/HeatMapGlLib/Stream.cs index fd8dfb0d..1f6f0bd6 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/Stream.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/VisibleEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/VisibleEnum.cs index 12a0e039..64ea90ee 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/XTypeEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/XTypeEnum.cs index f65b1010..59c9fd30 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/XTypeEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/XTypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib /// x coordinates are given by <c>x0</c> and <c>dx</c> (the default behavior /// when <c>x</c> is not provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XTypeEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/YTypeEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/YTypeEnum.cs index 4e99be92..225b58bd 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/YTypeEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/YTypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib /// y coordinates are given by <c>y0</c> and <c>dy</c> (the default behavior /// when <c>y</c> is not provided) /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YTypeEnum { diff --git a/Plotly.Blazor/Traces/HeatMapGlLib/ZSmoothEnum.cs b/Plotly.Blazor/Traces/HeatMapGlLib/ZSmoothEnum.cs index 47e2e4fc..5f58cd8a 100644 --- a/Plotly.Blazor/Traces/HeatMapGlLib/ZSmoothEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapGlLib/ZSmoothEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HeatMapGlLib /// <summary> /// Picks a smoothing algorithm use to smooth <c>z</c> data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ZSmoothEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBar.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBar.cs index 38d6df2a..8775edab 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ExponentFormatEnum.cs index f040f541..fa810deb 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/LenModeEnum.cs index 8a3a8c77..5efc930c 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/OrientationEnum.cs index 4563a2b9..b186d304 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowExponentEnum.cs index 9c49f144..ea836e67 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowTickPrefixEnum.cs index d57f5d54..a7460726 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowTickSuffixEnum.cs index dd3256e1..ffc81a02 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ThicknessModeEnum.cs index 88fa7c51..8e67e03e 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickFont.cs index 4bbd716b..c93bb398 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickFormatStop.cs index 0da1a415..b62d9eb2 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickLabelOverflowEnum.cs index 42a69bf4..d9258e1e 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickLabelPositionEnum.cs index d1803698..dc03e5c4 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickModeEnum.cs index 63721c6e..467322a3 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TicksEnum.cs index e5238156..1abe5957 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/Title.cs index d50e066b..72247010 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TitleLib/Font.cs index 4683fbba..7bb21dbd 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TitleLib/SideEnum.cs index 4c5293d8..659d9b5c 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/XAnchorEnum.cs index 1a10ff72..72848c77 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/XRefEnum.cs index f98765a4..22b62489 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/YAnchorEnum.cs index 1fd84d74..8a244b5e 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/YRefEnum.cs index 3117b7e1..078174ef 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/HeatMapLib/HoverInfoFlag.cs index 939e2fbb..b2a1d5e2 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/HeatMapLib/HoverLabel.cs b/Plotly.Blazor/Traces/HeatMapLib/HoverLabel.cs index 69065105..3e03c1a8 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/HeatMapLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/HoverLabelLib/AlignEnum.cs index 121b0175..e8e709f6 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/HeatMapLib/HoverLabelLib/Font.cs index d30f0a9d..5634cc1c 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/HeatMapLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/HeatMapLib/Legendgrouptitle.cs index 2cdbf631..34f20c48 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/HeatMapLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/HeatMapLib/LegendgrouptitleLib/Font.cs index 367ead9d..b421c91f 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/HeatMapLib/Stream.cs b/Plotly.Blazor/Traces/HeatMapLib/Stream.cs index 9ffb2b63..8bbd49fd 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/Stream.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/HeatMapLib/TextFont.cs b/Plotly.Blazor/Traces/HeatMapLib/TextFont.cs index 187b3941..f89926f7 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/TextFont.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/HeatMapLib/VisibleEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/VisibleEnum.cs index badb6cd7..974192d2 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/XCalendarEnum.cs index 0f57899e..6a0ca35a 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/XPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/XPeriodAlignmentEnum.cs index 2a88d0ea..54a875d4 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/XPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/XPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the x axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/XTypeEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/XTypeEnum.cs index 0429a630..2454c2af 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/XTypeEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/XTypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// x coordinates are given by <c>x0</c> and <c>dx</c> (the default behavior /// when <c>x</c> is not provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XTypeEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/YCalendarEnum.cs index 6bb6aad6..bd5541b2 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/YPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/YPeriodAlignmentEnum.cs index ab6bfb49..a23e2ff3 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/YPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/YPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the y axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/YTypeEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/YTypeEnum.cs index a695f64b..f38d8728 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/YTypeEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/YTypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// y coordinates are given by <c>y0</c> and <c>dy</c> (the default behavior /// when <c>y</c> is not provided) /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YTypeEnum { diff --git a/Plotly.Blazor/Traces/HeatMapLib/ZSmoothEnum.cs b/Plotly.Blazor/Traces/HeatMapLib/ZSmoothEnum.cs index cb6c430b..5ac77f80 100644 --- a/Plotly.Blazor/Traces/HeatMapLib/ZSmoothEnum.cs +++ b/Plotly.Blazor/Traces/HeatMapLib/ZSmoothEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HeatMapLib /// <summary> /// Picks a smoothing algorithm use to smooth <c>z</c> data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ZSmoothEnum { diff --git a/Plotly.Blazor/Traces/Histogram.cs b/Plotly.Blazor/Traces/Histogram.cs index 10888f82..4ccc03b5 100644 --- a/Plotly.Blazor/Traces/Histogram.cs +++ b/Plotly.Blazor/Traces/Histogram.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Histogram class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Histogram : ITrace, IEquatable<Histogram> diff --git a/Plotly.Blazor/Traces/Histogram2D.cs b/Plotly.Blazor/Traces/Histogram2D.cs index cca16ca4..529dbe5a 100644 --- a/Plotly.Blazor/Traces/Histogram2D.cs +++ b/Plotly.Blazor/Traces/Histogram2D.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Histogram2D class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Histogram2D : ITrace, IEquatable<Histogram2D> diff --git a/Plotly.Blazor/Traces/Histogram2DContour.cs b/Plotly.Blazor/Traces/Histogram2DContour.cs index 1681fb40..343e0f32 100644 --- a/Plotly.Blazor/Traces/Histogram2DContour.cs +++ b/Plotly.Blazor/Traces/Histogram2DContour.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Histogram2DContour class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Histogram2DContour : ITrace, IEquatable<Histogram2DContour> diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBar.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBar.cs index b3ad7b01..627086d0 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ExponentFormatEnum.cs index 788ad10e..d059b980 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/LenModeEnum.cs index afa3c575..97ba1023 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/OrientationEnum.cs index 5aeec496..356cb126 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowExponentEnum.cs index fdb28656..2bf02bab 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowTickPrefixEnum.cs index bac7cd49..1ff1029d 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowTickSuffixEnum.cs index 1203d6b9..5cf01f36 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ThicknessModeEnum.cs index 7ee732bc..2281b637 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickFont.cs index adee0fba..7344950f 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickFormatStop.cs index ea2a7ca1..1d6fae66 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickLabelOverflowEnum.cs index e21cddcb..fbe95af4 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickLabelPositionEnum.cs index e8a6681b..4b41246b 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickModeEnum.cs index 8a525fa8..4024da1c 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TicksEnum.cs index cee4735d..ec056b31 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/Title.cs index 1caa472a..4f0e49bd 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TitleLib/Font.cs index 67cf1407..da19201c 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TitleLib/SideEnum.cs index a5203e35..8f1e72b3 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/XAnchorEnum.cs index 7474d74c..d31333e9 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/XRefEnum.cs index c36c7129..8216933a 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/YAnchorEnum.cs index 5664fb2f..db62100e 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/YRefEnum.cs index 3c9abc60..5825e755 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/Contours.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/Contours.cs index fed0cd09..7b44cf29 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/Contours.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/Contours.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// The Contours class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Contours : IEquatable<Contours> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/ColoringEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/ColoringEnum.cs index 32e3e11f..4be13dad 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/ColoringEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/ColoringEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ContoursLib /// coloring is done on the contour lines. If <c>none</c>, no coloring is applied /// on this trace. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ColoringEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/LabelFont.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/LabelFont.cs index 344f36e3..28c16cfa 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/LabelFont.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/LabelFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ContoursLib /// <summary> /// The LabelFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LabelFont : IEquatable<LabelFont> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/OperationEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/OperationEnum.cs index be30ae66..fe02fb9c 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/OperationEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/OperationEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ContoursLib /// to value[1]` Open vs. closed intervals make no difference to constraint /// display, but all versions are allowed for consistency with filter transforms. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OperationEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/TypeEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/TypeEnum.cs index 47999254..404b363c 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/ContoursLib/TypeEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.ContoursLib /// with the invalid region shaded as specified by the <c>operation</c> and /// <c>value</c> parameters. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/HistFuncEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/HistFuncEnum.cs index 561d4bd3..53d4cd61 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/HistFuncEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/HistFuncEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// histogram values are computed using the sum, the average, the minimum or /// the maximum of the values lying inside each bin respectively. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HistFuncEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/HistNormEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/HistNormEnum.cs index 6cf8b444..af8d7bfd 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/HistNormEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/HistNormEnum.cs @@ -21,7 +21,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// that an event will fall into the corresponding bin (here, the sum of all /// bin AREAS equals 1). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HistNormEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/HoverInfoFlag.cs index c189e68e..2aa6615d 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabel.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabel.cs index d393cea1..2d5dde31 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabelLib/AlignEnum.cs index a20ff080..34afba17 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabelLib/Font.cs index c5d793eb..b6a7f83f 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/Legendgrouptitle.cs index 39e3016d..9e3d1922 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/LegendgrouptitleLib/Font.cs index 89ea42e9..25668473 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/Line.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/Line.cs index e82926a5..26e76b40 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/Line.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/Marker.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/Marker.cs index 01d829fb..3ca5d4e9 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/Marker.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/Stream.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/Stream.cs index f359806f..3969dd8e 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/Stream.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/TextFont.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/TextFont.cs index 904f636d..5b0a4fd4 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/TextFont.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/VisibleEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/VisibleEnum.cs index 8397f6cd..12c0cbdf 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/XBins.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/XBins.cs index a5594bf4..8ed47ea3 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/XBins.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/XBins.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// The XBins class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class XBins : IEquatable<XBins> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/XCalendarEnum.cs index d543805f..a1b5c1bc 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/YBins.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/YBins.cs index 938d06e1..2175cc03 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/YBins.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/YBins.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// The YBins class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class YBins : IEquatable<YBins> { diff --git a/Plotly.Blazor/Traces/Histogram2DContourLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/Histogram2DContourLib/YCalendarEnum.cs index 82e2a873..5c6747a6 100644 --- a/Plotly.Blazor/Traces/Histogram2DContourLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DContourLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Histogram2DContourLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBar.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBar.cs index 1fe7925d..66379b2a 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ExponentFormatEnum.cs index e4336c0a..c07abb82 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/LenModeEnum.cs index 29ac5551..7ed4dc18 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/OrientationEnum.cs index 88b61597..d6e4f992 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowExponentEnum.cs index c1957598..bdb21ecf 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowTickPrefixEnum.cs index 4f166e5c..a7a947e3 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowTickSuffixEnum.cs index 262e0485..6301cbf7 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ThicknessModeEnum.cs index 2f697ed1..7d25bc0e 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickFont.cs index 37fe32c2..4a4ea0f6 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickFormatStop.cs index 01b627eb..ff934914 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickLabelOverflowEnum.cs index 031773ba..b1200d61 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickLabelPositionEnum.cs index 07373060..d8aa414d 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickModeEnum.cs index 8e82e372..ca912733 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TicksEnum.cs index 56952850..d4dcf978 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/Title.cs index ad3798c3..7f267111 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TitleLib/Font.cs index bb532da9..3ff358ec 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TitleLib/SideEnum.cs index 7a419a18..3bcd2cc3 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/XAnchorEnum.cs index 906374f4..b505acbf 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/XRefEnum.cs index bc282866..d7fd2093 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/YAnchorEnum.cs index 4bab26a1..dc81223c 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/YRefEnum.cs index 90e47353..63ec8c66 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/HistFuncEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/HistFuncEnum.cs index 8d928f6f..c3412260 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/HistFuncEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/HistFuncEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// histogram values are computed using the sum, the average, the minimum or /// the maximum of the values lying inside each bin respectively. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HistFuncEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/HistNormEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/HistNormEnum.cs index 84f793e1..a7040879 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/HistNormEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/HistNormEnum.cs @@ -21,7 +21,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// that an event will fall into the corresponding bin (here, the sum of all /// bin AREAS equals 1). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HistNormEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/Histogram2DLib/HoverInfoFlag.cs index 542be854..c893d17f 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/Histogram2DLib/HoverLabel.cs b/Plotly.Blazor/Traces/Histogram2DLib/HoverLabel.cs index 4a4a614d..556cfb6a 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/Histogram2DLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/HoverLabelLib/AlignEnum.cs index 6f78cafd..6b9d5515 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/Histogram2DLib/HoverLabelLib/Font.cs index f4513741..a092999e 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/Histogram2DLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/Histogram2DLib/Legendgrouptitle.cs index f1fc4c0c..31b531f4 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/Histogram2DLib/LegendgrouptitleLib/Font.cs index 520be192..781e1908 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/Marker.cs b/Plotly.Blazor/Traces/Histogram2DLib/Marker.cs index fdf19a82..a5202148 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/Marker.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/Stream.cs b/Plotly.Blazor/Traces/Histogram2DLib/Stream.cs index 55c979cf..6f7e54e2 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/Stream.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/TextFont.cs b/Plotly.Blazor/Traces/Histogram2DLib/TextFont.cs index 55f4248c..bfe7a16b 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/TextFont.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/VisibleEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/VisibleEnum.cs index ccddcbb2..cc5ac6e7 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/XBins.cs b/Plotly.Blazor/Traces/Histogram2DLib/XBins.cs index d18d9877..1dbaf438 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/XBins.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/XBins.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// The XBins class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class XBins : IEquatable<XBins> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/XCalendarEnum.cs index 66e16d1b..bb65d04a 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/YBins.cs b/Plotly.Blazor/Traces/Histogram2DLib/YBins.cs index d30066ee..e161ff90 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/YBins.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/YBins.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// The YBins class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class YBins : IEquatable<YBins> { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/YCalendarEnum.cs index 641d4496..12f13304 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/Histogram2DLib/ZSmoothEnum.cs b/Plotly.Blazor/Traces/Histogram2DLib/ZSmoothEnum.cs index d9303206..b31ad9eb 100644 --- a/Plotly.Blazor/Traces/Histogram2DLib/ZSmoothEnum.cs +++ b/Plotly.Blazor/Traces/Histogram2DLib/ZSmoothEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Histogram2DLib /// <summary> /// Picks a smoothing algorithm use to smooth <c>z</c> data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ZSmoothEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/ConstrainTextEnum.cs b/Plotly.Blazor/Traces/HistogramLib/ConstrainTextEnum.cs index 9616b2e1..59992dc3 100644 --- a/Plotly.Blazor/Traces/HistogramLib/ConstrainTextEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/ConstrainTextEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// Constrain the size of text inside or outside a bar to be no larger than /// the bar itself. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ConstrainTextEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/Cumulative.cs b/Plotly.Blazor/Traces/HistogramLib/Cumulative.cs index c300da55..6a17fa6e 100644 --- a/Plotly.Blazor/Traces/HistogramLib/Cumulative.cs +++ b/Plotly.Blazor/Traces/HistogramLib/Cumulative.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The Cumulative class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Cumulative : IEquatable<Cumulative> { diff --git a/Plotly.Blazor/Traces/HistogramLib/CumulativeLib/CurrentBinEnum.cs b/Plotly.Blazor/Traces/HistogramLib/CumulativeLib/CurrentBinEnum.cs index 0d728a38..6865e928 100644 --- a/Plotly.Blazor/Traces/HistogramLib/CumulativeLib/CurrentBinEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/CumulativeLib/CurrentBinEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.CumulativeLib /// however it introduces a half-bin bias to the results. <c>exclude</c> makes /// the opposite half-bin bias, and <c>half</c> removes it. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CurrentBinEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/CumulativeLib/DirectionEnum.cs b/Plotly.Blazor/Traces/HistogramLib/CumulativeLib/DirectionEnum.cs index 15e9a295..68f31330 100644 --- a/Plotly.Blazor/Traces/HistogramLib/CumulativeLib/DirectionEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/CumulativeLib/DirectionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.CumulativeLib /// sum all prior bins, so the result increases from left to right. If <c>decreasing</c> /// we sum later bins so the result decreases from left to right. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DirectionEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/ErrorX.cs b/Plotly.Blazor/Traces/HistogramLib/ErrorX.cs index dbf046ee..8cce98c3 100644 --- a/Plotly.Blazor/Traces/HistogramLib/ErrorX.cs +++ b/Plotly.Blazor/Traces/HistogramLib/ErrorX.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The ErrorX class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorX : IEquatable<ErrorX> { diff --git a/Plotly.Blazor/Traces/HistogramLib/ErrorXLib/TypeEnum.cs b/Plotly.Blazor/Traces/HistogramLib/ErrorXLib/TypeEnum.cs index e3f74d92..3bd2206a 100644 --- a/Plotly.Blazor/Traces/HistogramLib/ErrorXLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/ErrorXLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.ErrorXLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/ErrorY.cs b/Plotly.Blazor/Traces/HistogramLib/ErrorY.cs index 575ca5ca..1e9fa19b 100644 --- a/Plotly.Blazor/Traces/HistogramLib/ErrorY.cs +++ b/Plotly.Blazor/Traces/HistogramLib/ErrorY.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The ErrorY class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorY : IEquatable<ErrorY> { diff --git a/Plotly.Blazor/Traces/HistogramLib/ErrorYLib/TypeEnum.cs b/Plotly.Blazor/Traces/HistogramLib/ErrorYLib/TypeEnum.cs index 6b8634f2..e8dfc6b0 100644 --- a/Plotly.Blazor/Traces/HistogramLib/ErrorYLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/ErrorYLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.ErrorYLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/HistFuncEnum.cs b/Plotly.Blazor/Traces/HistogramLib/HistFuncEnum.cs index aeb2aa83..c01fdb5e 100644 --- a/Plotly.Blazor/Traces/HistogramLib/HistFuncEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/HistFuncEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// histogram values are computed using the sum, the average, the minimum or /// the maximum of the values lying inside each bin respectively. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HistFuncEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/HistNormEnum.cs b/Plotly.Blazor/Traces/HistogramLib/HistNormEnum.cs index 0ced871d..c98ed7e7 100644 --- a/Plotly.Blazor/Traces/HistogramLib/HistNormEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/HistNormEnum.cs @@ -21,7 +21,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// that an event will fall into the corresponding bin (here, the sum of all /// bin AREAS equals 1). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HistNormEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/HistogramLib/HoverInfoFlag.cs index 7c9f159d..bace97d2 100644 --- a/Plotly.Blazor/Traces/HistogramLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/HistogramLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/HistogramLib/HoverLabel.cs b/Plotly.Blazor/Traces/HistogramLib/HoverLabel.cs index b1560385..15b5beed 100644 --- a/Plotly.Blazor/Traces/HistogramLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/HistogramLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/HistogramLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/HistogramLib/HoverLabelLib/AlignEnum.cs index f2be54e5..f5ea393c 100644 --- a/Plotly.Blazor/Traces/HistogramLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/HistogramLib/HoverLabelLib/Font.cs index 84af6b85..6df45c22 100644 --- a/Plotly.Blazor/Traces/HistogramLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/HistogramLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/HistogramLib/InsideTextAnchorEnum.cs b/Plotly.Blazor/Traces/HistogramLib/InsideTextAnchorEnum.cs index b3b5829a..ed1c6b4b 100644 --- a/Plotly.Blazor/Traces/HistogramLib/InsideTextAnchorEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/InsideTextAnchorEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// Determines if texts are kept at center or start/end points in <c>textposition</c> /// <c>inside</c> mode. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum InsideTextAnchorEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/InsideTextFont.cs b/Plotly.Blazor/Traces/HistogramLib/InsideTextFont.cs index baf75e16..b8f5bda5 100644 --- a/Plotly.Blazor/Traces/HistogramLib/InsideTextFont.cs +++ b/Plotly.Blazor/Traces/HistogramLib/InsideTextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The InsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class InsideTextFont : IEquatable<InsideTextFont> { diff --git a/Plotly.Blazor/Traces/HistogramLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/HistogramLib/Legendgrouptitle.cs index 21d26dc7..d3f6e913 100644 --- a/Plotly.Blazor/Traces/HistogramLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/HistogramLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/HistogramLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/HistogramLib/LegendgrouptitleLib/Font.cs index 4339c1d1..9d0361ad 100644 --- a/Plotly.Blazor/Traces/HistogramLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/HistogramLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/HistogramLib/Marker.cs b/Plotly.Blazor/Traces/HistogramLib/Marker.cs index a8dc464e..06a890cc 100644 --- a/Plotly.Blazor/Traces/HistogramLib/Marker.cs +++ b/Plotly.Blazor/Traces/HistogramLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBar.cs index 5f99d7e4..58caff48 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 30243c5c..09dd91b3 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/LenModeEnum.cs index 4d7dacaa..51fdfc9a 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/OrientationEnum.cs index f9a63eb7..bd0f3904 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 529f7d68..f513e360 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 95a8bcb5..c9f12e2a 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index 24346c04..10b0dcc3 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 4f2deaae..6a93fe87 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickFont.cs index a274d216..90b139ad 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickFormatStop.cs index c6f9fc82..ef5efdd4 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 1ac42739..13351726 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index cc826c2c..64cffd92 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickModeEnum.cs index eb098cbb..38708e9e 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TicksEnum.cs index b04488f0..6fab4c17 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/Title.cs index cc8b1791..f09a9b7e 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 664cbab1..a40c2292 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index c7446876..b4e08037 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index ec7f2fa7..f026ec2b 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/XRefEnum.cs index bb4e7fde..66ebe77b 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index a13c1dba..dc103571 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/YRefEnum.cs index fea54427..48b5cd3d 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/Line.cs index 4677ed57..916c429d 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/Pattern.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/Pattern.cs index 7b2b6866..409fc8e0 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/Pattern.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/Pattern.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib /// <summary> /// The Pattern class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Pattern : IEquatable<Pattern> diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/PatternLib/FillModeEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/PatternLib/FillModeEnum.cs index 6333127f..fa0068de 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/PatternLib/FillModeEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/PatternLib/FillModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.PatternLib /// Determines whether <c>marker.color</c> should be used as a default to <c>bgcolor</c> /// or a <c>fgcolor</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillModeEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/PatternLib/ShapeEnum.cs b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/PatternLib/ShapeEnum.cs index c2a850a7..66fb5c7c 100644 --- a/Plotly.Blazor/Traces/HistogramLib/MarkerLib/PatternLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/MarkerLib/PatternLib/ShapeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.MarkerLib.PatternLib /// Sets the shape of the pattern fill. By default, no pattern is used for filling /// the area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/OrientationEnum.cs b/Plotly.Blazor/Traces/HistogramLib/OrientationEnum.cs index 70266f87..829398f5 100644 --- a/Plotly.Blazor/Traces/HistogramLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/OrientationEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// Sets the orientation of the bars. With <c>v</c> (<c>h</c>), the value of /// the each bar spans along the vertical (horizontal). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/OutsideTextFont.cs b/Plotly.Blazor/Traces/HistogramLib/OutsideTextFont.cs index d5964df8..d8da6f8a 100644 --- a/Plotly.Blazor/Traces/HistogramLib/OutsideTextFont.cs +++ b/Plotly.Blazor/Traces/HistogramLib/OutsideTextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The OutsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class OutsideTextFont : IEquatable<OutsideTextFont> { diff --git a/Plotly.Blazor/Traces/HistogramLib/Selected.cs b/Plotly.Blazor/Traces/HistogramLib/Selected.cs index 83c9093b..f1c35eb3 100644 --- a/Plotly.Blazor/Traces/HistogramLib/Selected.cs +++ b/Plotly.Blazor/Traces/HistogramLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/HistogramLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/HistogramLib/SelectedLib/Marker.cs index cdc7a2c6..faf2831d 100644 --- a/Plotly.Blazor/Traces/HistogramLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/HistogramLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/HistogramLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/HistogramLib/SelectedLib/TextFont.cs index 0286e5f1..0ecb75ca 100644 --- a/Plotly.Blazor/Traces/HistogramLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/HistogramLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/HistogramLib/Stream.cs b/Plotly.Blazor/Traces/HistogramLib/Stream.cs index 94543837..44f55d60 100644 --- a/Plotly.Blazor/Traces/HistogramLib/Stream.cs +++ b/Plotly.Blazor/Traces/HistogramLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/HistogramLib/TextFont.cs b/Plotly.Blazor/Traces/HistogramLib/TextFont.cs index 633ab79a..66c5bb36 100644 --- a/Plotly.Blazor/Traces/HistogramLib/TextFont.cs +++ b/Plotly.Blazor/Traces/HistogramLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/HistogramLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/HistogramLib/TextPositionEnum.cs index cde6a6f6..c2ac0771 100644 --- a/Plotly.Blazor/Traces/HistogramLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/TextPositionEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// is too small and no bar is stacked on this one the text is moved outside. /// If <c>none</c>, no text appears. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/Unselected.cs b/Plotly.Blazor/Traces/HistogramLib/Unselected.cs index de8980ff..9fcd3a09 100644 --- a/Plotly.Blazor/Traces/HistogramLib/Unselected.cs +++ b/Plotly.Blazor/Traces/HistogramLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/HistogramLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/HistogramLib/UnselectedLib/Marker.cs index 03f7d470..c9c24e1a 100644 --- a/Plotly.Blazor/Traces/HistogramLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/HistogramLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/HistogramLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/HistogramLib/UnselectedLib/TextFont.cs index 53140604..72095d3d 100644 --- a/Plotly.Blazor/Traces/HistogramLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/HistogramLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/HistogramLib/VisibleEnum.cs b/Plotly.Blazor/Traces/HistogramLib/VisibleEnum.cs index 2bd1c540..1473b2ea 100644 --- a/Plotly.Blazor/Traces/HistogramLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/XBins.cs b/Plotly.Blazor/Traces/HistogramLib/XBins.cs index 7cb37dd8..94358f0b 100644 --- a/Plotly.Blazor/Traces/HistogramLib/XBins.cs +++ b/Plotly.Blazor/Traces/HistogramLib/XBins.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The XBins class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class XBins : IEquatable<XBins> { diff --git a/Plotly.Blazor/Traces/HistogramLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/HistogramLib/XCalendarEnum.cs index a29c328a..3f70a6fe 100644 --- a/Plotly.Blazor/Traces/HistogramLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/HistogramLib/YBins.cs b/Plotly.Blazor/Traces/HistogramLib/YBins.cs index 55a7cea1..42516a63 100644 --- a/Plotly.Blazor/Traces/HistogramLib/YBins.cs +++ b/Plotly.Blazor/Traces/HistogramLib/YBins.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// The YBins class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class YBins : IEquatable<YBins> { diff --git a/Plotly.Blazor/Traces/HistogramLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/HistogramLib/YCalendarEnum.cs index 008dcf03..f6a76eb0 100644 --- a/Plotly.Blazor/Traces/HistogramLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/HistogramLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.HistogramLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/Icicle.cs b/Plotly.Blazor/Traces/Icicle.cs index 58bfe10e..00aa0bf4 100644 --- a/Plotly.Blazor/Traces/Icicle.cs +++ b/Plotly.Blazor/Traces/Icicle.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Icicle class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Icicle : ITrace, IEquatable<Icicle> diff --git a/Plotly.Blazor/Traces/IcicleLib/BranchValuesEnum.cs b/Plotly.Blazor/Traces/IcicleLib/BranchValuesEnum.cs index eed2c3af..f7688005 100644 --- a/Plotly.Blazor/Traces/IcicleLib/BranchValuesEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/BranchValuesEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// and the branches sectors are taken to be the extra part not part of the /// sum of the values at their leaves. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum BranchValuesEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/CountFlag.cs b/Plotly.Blazor/Traces/IcicleLib/CountFlag.cs index b5446340..26793b98 100644 --- a/Plotly.Blazor/Traces/IcicleLib/CountFlag.cs +++ b/Plotly.Blazor/Traces/IcicleLib/CountFlag.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// Determines default for <c>values</c> when it is not provided, by inferring /// a 1 for each of the <c>leaves</c> and/or <c>branches</c>, otherwise 0. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum CountFlag diff --git a/Plotly.Blazor/Traces/IcicleLib/Domain.cs b/Plotly.Blazor/Traces/IcicleLib/Domain.cs index 5f896180..9e1a5b2e 100644 --- a/Plotly.Blazor/Traces/IcicleLib/Domain.cs +++ b/Plotly.Blazor/Traces/IcicleLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/Traces/IcicleLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/IcicleLib/HoverInfoFlag.cs index bbb2cdcd..ae1a8a9e 100644 --- a/Plotly.Blazor/Traces/IcicleLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/IcicleLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/IcicleLib/HoverLabel.cs b/Plotly.Blazor/Traces/IcicleLib/HoverLabel.cs index d2a6cc68..9fe9be7b 100644 --- a/Plotly.Blazor/Traces/IcicleLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/IcicleLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/IcicleLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/IcicleLib/HoverLabelLib/AlignEnum.cs index d4128827..813954fe 100644 --- a/Plotly.Blazor/Traces/IcicleLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/IcicleLib/HoverLabelLib/Font.cs index 34555a8d..affd2c38 100644 --- a/Plotly.Blazor/Traces/IcicleLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/IcicleLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/IcicleLib/InsideTextFont.cs b/Plotly.Blazor/Traces/IcicleLib/InsideTextFont.cs index c8af26c7..d9d6f452 100644 --- a/Plotly.Blazor/Traces/IcicleLib/InsideTextFont.cs +++ b/Plotly.Blazor/Traces/IcicleLib/InsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The InsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class InsideTextFont : IEquatable<InsideTextFont> diff --git a/Plotly.Blazor/Traces/IcicleLib/Leaf.cs b/Plotly.Blazor/Traces/IcicleLib/Leaf.cs index 42968e11..fc37e683 100644 --- a/Plotly.Blazor/Traces/IcicleLib/Leaf.cs +++ b/Plotly.Blazor/Traces/IcicleLib/Leaf.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The Leaf class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Leaf : IEquatable<Leaf> { diff --git a/Plotly.Blazor/Traces/IcicleLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/IcicleLib/Legendgrouptitle.cs index 397094d2..5508a648 100644 --- a/Plotly.Blazor/Traces/IcicleLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/IcicleLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/IcicleLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/IcicleLib/LegendgrouptitleLib/Font.cs index 5886b02e..25675f3c 100644 --- a/Plotly.Blazor/Traces/IcicleLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/IcicleLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/IcicleLib/Marker.cs b/Plotly.Blazor/Traces/IcicleLib/Marker.cs index c0a6fc1d..10c01c32 100644 --- a/Plotly.Blazor/Traces/IcicleLib/Marker.cs +++ b/Plotly.Blazor/Traces/IcicleLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBar.cs index 5934c422..8681b8ca 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 7c3e27b3..5ba7332e 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/LenModeEnum.cs index e5b5f008..16cdbdb4 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/OrientationEnum.cs index 77e65d91..d99b213d 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 5dcbedee..441c9117 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index fb4d7680..386c7ecb 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index 8d02425d..3e7fd5b4 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 9c2701eb..4c08ef4b 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickFont.cs index 799038c5..49484397 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 6c645eec..47481852 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 4ae6e36b..da775e03 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index b9ea4146..2125d4ed 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 82878905..d07528b8 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TicksEnum.cs index 1c817c8f..9239755b 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/Title.cs index 23327f0b..45efb9af 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 740a477f..fafaec04 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 9380c68e..1e858a70 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index a0f6d784..6032c592 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/XRefEnum.cs index 1e4e9c85..27322235 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index 3d6e0650..5ba03a5e 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/YRefEnum.cs index 11c5eb6f..aa6e55f2 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/Line.cs index 6e9107a7..1864213b 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/Pattern.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/Pattern.cs index ca884b30..2a340d50 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/Pattern.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/Pattern.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib /// <summary> /// The Pattern class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Pattern : IEquatable<Pattern> diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/PatternLib/FillModeEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/PatternLib/FillModeEnum.cs index b79fce97..3ebb9761 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/PatternLib/FillModeEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/PatternLib/FillModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.PatternLib /// Determines whether <c>marker.color</c> should be used as a default to <c>bgcolor</c> /// or a <c>fgcolor</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillModeEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/PatternLib/ShapeEnum.cs b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/PatternLib/ShapeEnum.cs index e16bc32d..dce10ef7 100644 --- a/Plotly.Blazor/Traces/IcicleLib/MarkerLib/PatternLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/MarkerLib/PatternLib/ShapeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.MarkerLib.PatternLib /// Sets the shape of the pattern fill. By default, no pattern is used for filling /// the area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/OutsideTextFont.cs b/Plotly.Blazor/Traces/IcicleLib/OutsideTextFont.cs index cc7a2f38..568b699b 100644 --- a/Plotly.Blazor/Traces/IcicleLib/OutsideTextFont.cs +++ b/Plotly.Blazor/Traces/IcicleLib/OutsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The OutsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class OutsideTextFont : IEquatable<OutsideTextFont> diff --git a/Plotly.Blazor/Traces/IcicleLib/PathBar.cs b/Plotly.Blazor/Traces/IcicleLib/PathBar.cs index 0c778f67..9151bbc2 100644 --- a/Plotly.Blazor/Traces/IcicleLib/PathBar.cs +++ b/Plotly.Blazor/Traces/IcicleLib/PathBar.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The PathBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class PathBar : IEquatable<PathBar> { diff --git a/Plotly.Blazor/Traces/IcicleLib/PathBarLib/EdgeShapeEnum.cs b/Plotly.Blazor/Traces/IcicleLib/PathBarLib/EdgeShapeEnum.cs index da4a27f9..c06c4f7d 100644 --- a/Plotly.Blazor/Traces/IcicleLib/PathBarLib/EdgeShapeEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/PathBarLib/EdgeShapeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.PathBarLib /// <summary> /// Determines which shape is used for edges between <c>barpath</c> labels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum EdgeShapeEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/PathBarLib/SideEnum.cs b/Plotly.Blazor/Traces/IcicleLib/PathBarLib/SideEnum.cs index 08bb2ff2..43654915 100644 --- a/Plotly.Blazor/Traces/IcicleLib/PathBarLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/PathBarLib/SideEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.PathBarLib /// Determines on which side of the the treemap the <c>pathbar</c> should be /// presented. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/PathBarLib/TextFont.cs b/Plotly.Blazor/Traces/IcicleLib/PathBarLib/TextFont.cs index 464fffc7..fb836755 100644 --- a/Plotly.Blazor/Traces/IcicleLib/PathBarLib/TextFont.cs +++ b/Plotly.Blazor/Traces/IcicleLib/PathBarLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.PathBarLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/IcicleLib/Root.cs b/Plotly.Blazor/Traces/IcicleLib/Root.cs index b253e74f..4d1f7272 100644 --- a/Plotly.Blazor/Traces/IcicleLib/Root.cs +++ b/Plotly.Blazor/Traces/IcicleLib/Root.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The Root class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Root : IEquatable<Root> { diff --git a/Plotly.Blazor/Traces/IcicleLib/Stream.cs b/Plotly.Blazor/Traces/IcicleLib/Stream.cs index c7274f1d..15dbaf08 100644 --- a/Plotly.Blazor/Traces/IcicleLib/Stream.cs +++ b/Plotly.Blazor/Traces/IcicleLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/IcicleLib/TextFont.cs b/Plotly.Blazor/Traces/IcicleLib/TextFont.cs index 9525f2c9..abc079bd 100644 --- a/Plotly.Blazor/Traces/IcicleLib/TextFont.cs +++ b/Plotly.Blazor/Traces/IcicleLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/IcicleLib/TextInfoFlag.cs b/Plotly.Blazor/Traces/IcicleLib/TextInfoFlag.cs index cd7c1423..f3576362 100644 --- a/Plotly.Blazor/Traces/IcicleLib/TextInfoFlag.cs +++ b/Plotly.Blazor/Traces/IcicleLib/TextInfoFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// Determines which trace information appear on the graph. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum TextInfoFlag diff --git a/Plotly.Blazor/Traces/IcicleLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/IcicleLib/TextPositionEnum.cs index 5e54d577..8d02e1f0 100644 --- a/Plotly.Blazor/Traces/IcicleLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/TextPositionEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// Sets the positions of the <c>text</c> elements. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/Tiling.cs b/Plotly.Blazor/Traces/IcicleLib/Tiling.cs index 3a674231..cc73af95 100644 --- a/Plotly.Blazor/Traces/IcicleLib/Tiling.cs +++ b/Plotly.Blazor/Traces/IcicleLib/Tiling.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// <summary> /// The Tiling class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Tiling : IEquatable<Tiling> { diff --git a/Plotly.Blazor/Traces/IcicleLib/TilingLib/FlipFlag.cs b/Plotly.Blazor/Traces/IcicleLib/TilingLib/FlipFlag.cs index 63ac1750..3423b61c 100644 --- a/Plotly.Blazor/Traces/IcicleLib/TilingLib/FlipFlag.cs +++ b/Plotly.Blazor/Traces/IcicleLib/TilingLib/FlipFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.TilingLib /// <summary> /// Determines if the positions obtained from solver are flipped on each axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum FlipFlag diff --git a/Plotly.Blazor/Traces/IcicleLib/TilingLib/OrientationEnum.cs b/Plotly.Blazor/Traces/IcicleLib/TilingLib/OrientationEnum.cs index fe916f8a..04adf933 100644 --- a/Plotly.Blazor/Traces/IcicleLib/TilingLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/TilingLib/OrientationEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.Traces.IcicleLib.TilingLib /// is <c>h</c> and <c>tiling.flip</c> is <c>x</c>, the root nodes appear at /// the right. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/IcicleLib/VisibleEnum.cs b/Plotly.Blazor/Traces/IcicleLib/VisibleEnum.cs index 2a244b18..bec686d0 100644 --- a/Plotly.Blazor/Traces/IcicleLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/IcicleLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IcicleLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Image.cs b/Plotly.Blazor/Traces/Image.cs index 53acede0..86dcb38e 100644 --- a/Plotly.Blazor/Traces/Image.cs +++ b/Plotly.Blazor/Traces/Image.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Image class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Image : ITrace, IEquatable<Image> diff --git a/Plotly.Blazor/Traces/ImageLib/ColorModelEnum.cs b/Plotly.Blazor/Traces/ImageLib/ColorModelEnum.cs index d8e2c99f..49e56209 100644 --- a/Plotly.Blazor/Traces/ImageLib/ColorModelEnum.cs +++ b/Plotly.Blazor/Traces/ImageLib/ColorModelEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ImageLib /// into colors. If <c>source</c> is specified, this attribute will be set to /// <c>rgba256</c> otherwise it defaults to <c>rgb</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ColorModelEnum { diff --git a/Plotly.Blazor/Traces/ImageLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ImageLib/HoverInfoFlag.cs index 8bf6635d..4f653587 100644 --- a/Plotly.Blazor/Traces/ImageLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ImageLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ImageLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ImageLib/HoverLabel.cs b/Plotly.Blazor/Traces/ImageLib/HoverLabel.cs index 235319d7..b133df65 100644 --- a/Plotly.Blazor/Traces/ImageLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ImageLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ImageLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ImageLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ImageLib/HoverLabelLib/AlignEnum.cs index 10664375..61ecb337 100644 --- a/Plotly.Blazor/Traces/ImageLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ImageLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ImageLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ImageLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ImageLib/HoverLabelLib/Font.cs index 98d57082..e3c57612 100644 --- a/Plotly.Blazor/Traces/ImageLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ImageLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ImageLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ImageLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ImageLib/Legendgrouptitle.cs index b43e21b0..32e09323 100644 --- a/Plotly.Blazor/Traces/ImageLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ImageLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ImageLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ImageLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ImageLib/LegendgrouptitleLib/Font.cs index dbe067e3..4c8e9795 100644 --- a/Plotly.Blazor/Traces/ImageLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ImageLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ImageLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ImageLib/Stream.cs b/Plotly.Blazor/Traces/ImageLib/Stream.cs index 8d965034..f5c603b6 100644 --- a/Plotly.Blazor/Traces/ImageLib/Stream.cs +++ b/Plotly.Blazor/Traces/ImageLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ImageLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ImageLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ImageLib/VisibleEnum.cs index 7a34b67c..97379cc1 100644 --- a/Plotly.Blazor/Traces/ImageLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ImageLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ImageLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ImageLib/ZSmoothEnum.cs b/Plotly.Blazor/Traces/ImageLib/ZSmoothEnum.cs index ef72233f..862851dc 100644 --- a/Plotly.Blazor/Traces/ImageLib/ZSmoothEnum.cs +++ b/Plotly.Blazor/Traces/ImageLib/ZSmoothEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ImageLib /// Picks a smoothing algorithm used to smooth <c>z</c> data. This only applies /// for image traces that use the <c>source</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ZSmoothEnum { diff --git a/Plotly.Blazor/Traces/Indicator.cs b/Plotly.Blazor/Traces/Indicator.cs index 9cd7c415..7a33fd4d 100644 --- a/Plotly.Blazor/Traces/Indicator.cs +++ b/Plotly.Blazor/Traces/Indicator.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Indicator class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Indicator : ITrace, IEquatable<Indicator> diff --git a/Plotly.Blazor/Traces/IndicatorLib/AlignEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/AlignEnum.cs index 26eac37b..231b2809 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/AlignEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib /// this attribute has no effect if an angular gauge is displayed: in this case, /// it is always centered /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/IndicatorLib/Delta.cs b/Plotly.Blazor/Traces/IndicatorLib/Delta.cs index 20a701a3..bcfdd713 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/Delta.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/Delta.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib /// <summary> /// The Delta class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Delta : IEquatable<Delta> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Decreasing.cs b/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Decreasing.cs index 2d2ef42a..de95adac 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Decreasing.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Decreasing.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.DeltaLib /// <summary> /// The Decreasing class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Decreasing : IEquatable<Decreasing> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Font.cs b/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Font.cs index d0659342..c184dd54 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Font.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.DeltaLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Increasing.cs b/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Increasing.cs index 0facc00c..64154908 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Increasing.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/Increasing.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.DeltaLib /// <summary> /// The Increasing class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Increasing : IEquatable<Increasing> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/PositionEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/PositionEnum.cs index 8c184f8e..0baed10f 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/PositionEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/DeltaLib/PositionEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.DeltaLib /// <summary> /// Sets the position of delta with respect to the number. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum PositionEnum { diff --git a/Plotly.Blazor/Traces/IndicatorLib/Domain.cs b/Plotly.Blazor/Traces/IndicatorLib/Domain.cs index 912a0cb4..dbd696d8 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/Domain.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/Gauge.cs b/Plotly.Blazor/Traces/IndicatorLib/Gauge.cs index 8cb5949b..178f83b5 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/Gauge.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/Gauge.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib /// <summary> /// The Gauge class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Gauge : IEquatable<Gauge> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Axis.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Axis.cs index 87907eee..e63bc439 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Axis.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Axis.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib /// <summary> /// The Axis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Axis : IEquatable<Axis> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ExponentFormatEnum.cs index 724b1879..c19a3a82 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.AxisLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowExponentEnum.cs index cf8f2a88..1e2a94af 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.AxisLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowTickPrefixEnum.cs index 5eea29bb..c75fd705 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.AxisLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowTickSuffixEnum.cs index 73eff91f..3a97d581 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.AxisLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickFont.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickFont.cs index cbab3a1b..cdd7622e 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickFont.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.AxisLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickFormatStop.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickFormatStop.cs index a8931eec..7c13f229 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.AxisLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickModeEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickModeEnum.cs index 0ca4d359..04d62107 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.AxisLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TicksEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TicksEnum.cs index dde47105..377a7856 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/AxisLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.AxisLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Bar.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Bar.cs index 2a36b6ff..5eb071f9 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Bar.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Bar.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib /// <summary> /// The Bar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Bar : IEquatable<Bar> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/BarLib/Line.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/BarLib/Line.cs index a8a641a6..d84419fb 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/BarLib/Line.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/BarLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.BarLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/ShapeEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/ShapeEnum.cs index 18241886..29e75706 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/ShapeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib /// <summary> /// Set the shape of the gauge /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Step.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Step.cs index df23ebac..f6984131 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Step.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Step.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib /// <summary> /// The Step class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Step : IEquatable<Step> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/StepLib/Line.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/StepLib/Line.cs index ef9cbdb5..98587607 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/StepLib/Line.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/StepLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.StepLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Threshold.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Threshold.cs index 6185d6bf..8574b3c5 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Threshold.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/Threshold.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib /// <summary> /// The Threshold class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Threshold : IEquatable<Threshold> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/ThresholdLib/Line.cs b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/ThresholdLib/Line.cs index ac373226..49bb895c 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/ThresholdLib/Line.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/GaugeLib/ThresholdLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.GaugeLib.ThresholdLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/IndicatorLib/Legendgrouptitle.cs index 15f077ba..b9d4807d 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/IndicatorLib/LegendgrouptitleLib/Font.cs index ef083eb9..042a92b2 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/ModeFlag.cs b/Plotly.Blazor/Traces/IndicatorLib/ModeFlag.cs index 6804223d..d4c77b71 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/ModeFlag.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib /// reference value in text. Finally, <c>gauge</c> displays the value graphically /// on an axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/IndicatorLib/Number.cs b/Plotly.Blazor/Traces/IndicatorLib/Number.cs index c551745c..032848fb 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/Number.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/Number.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib /// <summary> /// The Number class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Number : IEquatable<Number> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/NumberLib/Font.cs b/Plotly.Blazor/Traces/IndicatorLib/NumberLib/Font.cs index 8cbaf956..1e0bf775 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/NumberLib/Font.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/NumberLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.NumberLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/Stream.cs b/Plotly.Blazor/Traces/IndicatorLib/Stream.cs index 9ebd3820..5062e6b9 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/Stream.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/Title.cs b/Plotly.Blazor/Traces/IndicatorLib/Title.cs index 8c6ea78b..206578a1 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/Title.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/TitleLib/AlignEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/TitleLib/AlignEnum.cs index 79a89c62..3c416abf 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/TitleLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/TitleLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.TitleLib /// Sets the horizontal alignment of the title. It defaults to <c>center</c> /// except for bullet charts for which it defaults to right. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/IndicatorLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/IndicatorLib/TitleLib/Font.cs index 6b1e33e7..293ced23 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/IndicatorLib/VisibleEnum.cs b/Plotly.Blazor/Traces/IndicatorLib/VisibleEnum.cs index bead70a6..024191cd 100644 --- a/Plotly.Blazor/Traces/IndicatorLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/IndicatorLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IndicatorLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/IsoSurface.cs b/Plotly.Blazor/Traces/IsoSurface.cs index 8c857f35..2ea82577 100644 --- a/Plotly.Blazor/Traces/IsoSurface.cs +++ b/Plotly.Blazor/Traces/IsoSurface.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The IsoSurface class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class IsoSurface : ITrace, IEquatable<IsoSurface> diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/Caps.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/Caps.cs index 167de37e..9231d11d 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/Caps.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/Caps.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The Caps class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Caps : IEquatable<Caps> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/X.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/X.cs index 4435c7a5..1fcaabeb 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/X.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/X.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.CapsLib /// <summary> /// The X class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class X : IEquatable<X> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/Y.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/Y.cs index 8e9a8f86..57614f3b 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/Y.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/Y.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.CapsLib /// <summary> /// The Y class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Y : IEquatable<Y> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/Z.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/Z.cs index 42d03fbb..222f9e07 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/Z.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/CapsLib/Z.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.CapsLib /// <summary> /// The Z class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Z : IEquatable<Z> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBar.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBar.cs index 395343c0..37b18516 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ExponentFormatEnum.cs index 07c94f17..7a093cb4 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/LenModeEnum.cs index 33ad3ffc..66b71ee2 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/OrientationEnum.cs index 1593238a..cdc6aa5b 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowExponentEnum.cs index 497928bb..60f3a314 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowTickPrefixEnum.cs index 96749e13..92ddcc32 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowTickSuffixEnum.cs index 43c7cf9c..17a86fb8 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ThicknessModeEnum.cs index cdbf3d09..12d66b8a 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickFont.cs index f179057e..707bb92f 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickFormatStop.cs index a0d64412..ae2eeb0e 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickLabelOverflowEnum.cs index 064b8f6b..eccb4e39 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickLabelPositionEnum.cs index 6db9dba4..822d52ac 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickModeEnum.cs index 61789e7d..9e738e84 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TicksEnum.cs index 8d027744..808b51a4 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/Title.cs index 9af27c78..2287b37e 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TitleLib/Font.cs index da01d610..3a9caadd 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TitleLib/SideEnum.cs index 6cf1d7eb..fe367820 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/XAnchorEnum.cs index 35375e42..a00cb32a 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/XRefEnum.cs index 5945fe18..5bae43b4 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/YAnchorEnum.cs index 122e97df..1c918854 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/YRefEnum.cs index 33ca82fc..85270231 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/Contour.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/Contour.cs index cfef2706..aeeb9b61 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/Contour.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/Contour.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The Contour class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Contour : IEquatable<Contour> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/HoverInfoFlag.cs index 74d8d0c3..c25e02cc 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabel.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabel.cs index d251585a..e746edf4 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabelLib/AlignEnum.cs index daac54dc..5255ce83 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabelLib/Font.cs index a62650aa..5be58788 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/Legendgrouptitle.cs index ff8c728d..515c8630 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/LegendgrouptitleLib/Font.cs index 1500d3d8..d97c1505 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/LightPosition.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/LightPosition.cs index 47bf48f8..2f51d451 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/LightPosition.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/LightPosition.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The LightPosition class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LightPosition : IEquatable<LightPosition> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/Lighting.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/Lighting.cs index f7b7dd9e..f6ec551b 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/Lighting.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/Lighting.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The Lighting class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Lighting : IEquatable<Lighting> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/Slices.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/Slices.cs index 1f406a3c..92b35716 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/Slices.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/Slices.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The Slices class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Slices : IEquatable<Slices> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/X.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/X.cs index 85da6231..8b1d52b8 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/X.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/X.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.SlicesLib /// <summary> /// The X class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class X : IEquatable<X> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/Y.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/Y.cs index 4d5793f5..a8c0beb0 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/Y.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/Y.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.SlicesLib /// <summary> /// The Y class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Y : IEquatable<Y> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/Z.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/Z.cs index 0a65e6a4..2340b97d 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/Z.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/SlicesLib/Z.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.SlicesLib /// <summary> /// The Z class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Z : IEquatable<Z> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/SpaceFrame.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/SpaceFrame.cs index 96115f69..86022550 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/SpaceFrame.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/SpaceFrame.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The SpaceFrame class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class SpaceFrame : IEquatable<SpaceFrame> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/Stream.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/Stream.cs index e8502eab..1a899d44 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/Stream.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/Surface.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/Surface.cs index 0238e2ff..2028ea55 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/Surface.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/Surface.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// <summary> /// The Surface class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Surface : IEquatable<Surface> { diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/SurfaceLib/PatternFlag.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/SurfaceLib/PatternFlag.cs index 4c681673..34bd46db 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/SurfaceLib/PatternFlag.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/SurfaceLib/PatternFlag.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib.SurfaceLib /// <c>B</c>, <c>C</c>, <c>D</c> and <c>E</c> may also be used to reduce the /// number of triangles on the iso-surfaces and creating other patterns of interest. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum PatternFlag diff --git a/Plotly.Blazor/Traces/IsoSurfaceLib/VisibleEnum.cs b/Plotly.Blazor/Traces/IsoSurfaceLib/VisibleEnum.cs index 5ad4e836..f9870344 100644 --- a/Plotly.Blazor/Traces/IsoSurfaceLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/IsoSurfaceLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.IsoSurfaceLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Mesh3D.cs b/Plotly.Blazor/Traces/Mesh3D.cs index 6c8689b5..9c8d22b5 100644 --- a/Plotly.Blazor/Traces/Mesh3D.cs +++ b/Plotly.Blazor/Traces/Mesh3D.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Mesh3D class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Mesh3D : ITrace, IEquatable<Mesh3D> diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBar.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBar.cs index 4d11d8d2..27493b62 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ExponentFormatEnum.cs index 6c0cf38d..acc4855f 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/LenModeEnum.cs index 30c4564b..46e0ffe5 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/OrientationEnum.cs index 55680554..2996bdcc 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowExponentEnum.cs index 42298da2..bc0e95df 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowTickPrefixEnum.cs index 5309279a..d82441bc 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowTickSuffixEnum.cs index 3fc81b8c..8ab07cef 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ThicknessModeEnum.cs index 8062a6ae..568c8ea2 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickFont.cs index 61e9fa2a..fd95bfcb 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickFormatStop.cs index 2325f231..c67d50e6 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickLabelOverflowEnum.cs index 64793a7c..edaf3690 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickLabelPositionEnum.cs index daab44ce..7e483b7c 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickModeEnum.cs index 043b0782..6647760a 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TicksEnum.cs index f6c0ddab..36cf28cc 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/Title.cs index ee849c0d..08fd55db 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TitleLib/Font.cs index a044e1d9..46aaa3de 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TitleLib/SideEnum.cs index edcebbc2..a3caa25a 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/XAnchorEnum.cs index 6debe870..00b07a69 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/XRefEnum.cs index 29636176..7d3b81bb 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/YAnchorEnum.cs index 13d1c22e..3d17d102 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/YRefEnum.cs index f023a84b..2d0e6fe7 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/Contour.cs b/Plotly.Blazor/Traces/Mesh3DLib/Contour.cs index e0fedc8e..5c5c9d77 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/Contour.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/Contour.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// The Contour class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Contour : IEquatable<Contour> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/DelaunaYAxisEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/DelaunaYAxisEnum.cs index 0381ee49..6f912f23 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/DelaunaYAxisEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/DelaunaYAxisEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// of the Delaunay triangulation. It has an effect if <c>i</c>, <c>j</c>, <c>k</c> /// are not provided and <c>alphahull</c> is set to indicate Delaunay triangulation. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DelaunaYAxisEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/Mesh3DLib/HoverInfoFlag.cs index 435626bd..b76a916d 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/Mesh3DLib/HoverLabel.cs b/Plotly.Blazor/Traces/Mesh3DLib/HoverLabel.cs index 18a5d3f3..9098f066 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/Mesh3DLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/HoverLabelLib/AlignEnum.cs index 1c0fe221..51add4e4 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/Mesh3DLib/HoverLabelLib/Font.cs index 897ba0d5..b267bbb6 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/Mesh3DLib/IntensityModeEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/IntensityModeEnum.cs index a19f2422..e49a816d 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/IntensityModeEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/IntensityModeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// Determines the source of <c>intensity</c> values. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum IntensityModeEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/Mesh3DLib/Legendgrouptitle.cs index 693e8021..b3c539cd 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/Mesh3DLib/LegendgrouptitleLib/Font.cs index ae5010bd..4bb2c705 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/LightPosition.cs b/Plotly.Blazor/Traces/Mesh3DLib/LightPosition.cs index c9af3425..4e594f7f 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/LightPosition.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/LightPosition.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// The LightPosition class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LightPosition : IEquatable<LightPosition> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/Lighting.cs b/Plotly.Blazor/Traces/Mesh3DLib/Lighting.cs index ed3df7d0..83dba39e 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/Lighting.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/Lighting.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// The Lighting class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Lighting : IEquatable<Lighting> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/Stream.cs b/Plotly.Blazor/Traces/Mesh3DLib/Stream.cs index 2d4dd286..73c6e487 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/Stream.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/VisibleEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/VisibleEnum.cs index 0127954d..61d96670 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/XCalendarEnum.cs index 0ae9696b..862e72c7 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/YCalendarEnum.cs index 75dfd858..87d7465f 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/Mesh3DLib/ZCalendarEnum.cs b/Plotly.Blazor/Traces/Mesh3DLib/ZCalendarEnum.cs index e61c2fe0..9044d627 100644 --- a/Plotly.Blazor/Traces/Mesh3DLib/ZCalendarEnum.cs +++ b/Plotly.Blazor/Traces/Mesh3DLib/ZCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Mesh3DLib /// <summary> /// Sets the calendar system to use with <c>z</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ZCalendarEnum { diff --git a/Plotly.Blazor/Traces/Ohlc.cs b/Plotly.Blazor/Traces/Ohlc.cs index 0836b2bc..497ef4a4 100644 --- a/Plotly.Blazor/Traces/Ohlc.cs +++ b/Plotly.Blazor/Traces/Ohlc.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Ohlc class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Ohlc : ITrace, IEquatable<Ohlc> diff --git a/Plotly.Blazor/Traces/OhlcLib/Decreasing.cs b/Plotly.Blazor/Traces/OhlcLib/Decreasing.cs index 666ad4dd..2872145b 100644 --- a/Plotly.Blazor/Traces/OhlcLib/Decreasing.cs +++ b/Plotly.Blazor/Traces/OhlcLib/Decreasing.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.OhlcLib /// <summary> /// The Decreasing class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Decreasing : IEquatable<Decreasing> { diff --git a/Plotly.Blazor/Traces/OhlcLib/DecreasingLib/Line.cs b/Plotly.Blazor/Traces/OhlcLib/DecreasingLib/Line.cs index f4ecd63d..4dac8c62 100644 --- a/Plotly.Blazor/Traces/OhlcLib/DecreasingLib/Line.cs +++ b/Plotly.Blazor/Traces/OhlcLib/DecreasingLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.OhlcLib.DecreasingLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/OhlcLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/OhlcLib/HoverInfoFlag.cs index 46dac7b9..9045eb90 100644 --- a/Plotly.Blazor/Traces/OhlcLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/OhlcLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.OhlcLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/OhlcLib/HoverLabel.cs b/Plotly.Blazor/Traces/OhlcLib/HoverLabel.cs index b64dd6b0..11957e4a 100644 --- a/Plotly.Blazor/Traces/OhlcLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/OhlcLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.OhlcLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/OhlcLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/OhlcLib/HoverLabelLib/AlignEnum.cs index fac5acb7..bc912aae 100644 --- a/Plotly.Blazor/Traces/OhlcLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/OhlcLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.OhlcLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/OhlcLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/OhlcLib/HoverLabelLib/Font.cs index 1a403fb7..2d9aee7e 100644 --- a/Plotly.Blazor/Traces/OhlcLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/OhlcLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.OhlcLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/OhlcLib/Increasing.cs b/Plotly.Blazor/Traces/OhlcLib/Increasing.cs index e9fcd57f..abc462dc 100644 --- a/Plotly.Blazor/Traces/OhlcLib/Increasing.cs +++ b/Plotly.Blazor/Traces/OhlcLib/Increasing.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.OhlcLib /// <summary> /// The Increasing class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Increasing : IEquatable<Increasing> { diff --git a/Plotly.Blazor/Traces/OhlcLib/IncreasingLib/Line.cs b/Plotly.Blazor/Traces/OhlcLib/IncreasingLib/Line.cs index 5a13546d..ce6628e9 100644 --- a/Plotly.Blazor/Traces/OhlcLib/IncreasingLib/Line.cs +++ b/Plotly.Blazor/Traces/OhlcLib/IncreasingLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.OhlcLib.IncreasingLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/OhlcLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/OhlcLib/Legendgrouptitle.cs index 6303b9d9..1e9ede0f 100644 --- a/Plotly.Blazor/Traces/OhlcLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/OhlcLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.OhlcLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/OhlcLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/OhlcLib/LegendgrouptitleLib/Font.cs index 779ad7f9..1ac67804 100644 --- a/Plotly.Blazor/Traces/OhlcLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/OhlcLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.OhlcLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/OhlcLib/Line.cs b/Plotly.Blazor/Traces/OhlcLib/Line.cs index 5463bb95..97b63fc5 100644 --- a/Plotly.Blazor/Traces/OhlcLib/Line.cs +++ b/Plotly.Blazor/Traces/OhlcLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.OhlcLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/OhlcLib/Stream.cs b/Plotly.Blazor/Traces/OhlcLib/Stream.cs index 2ac8accf..4b68846c 100644 --- a/Plotly.Blazor/Traces/OhlcLib/Stream.cs +++ b/Plotly.Blazor/Traces/OhlcLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.OhlcLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/OhlcLib/VisibleEnum.cs b/Plotly.Blazor/Traces/OhlcLib/VisibleEnum.cs index be55eb9f..57a9c50b 100644 --- a/Plotly.Blazor/Traces/OhlcLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/OhlcLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.OhlcLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/OhlcLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/OhlcLib/XCalendarEnum.cs index 84973d8f..6e812a95 100644 --- a/Plotly.Blazor/Traces/OhlcLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/OhlcLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.OhlcLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/OhlcLib/XPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/OhlcLib/XPeriodAlignmentEnum.cs index bd2d5fe9..17e0866c 100644 --- a/Plotly.Blazor/Traces/OhlcLib/XPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/OhlcLib/XPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.OhlcLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the x axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/ParCats.cs b/Plotly.Blazor/Traces/ParCats.cs index bc7e3043..a886429f 100644 --- a/Plotly.Blazor/Traces/ParCats.cs +++ b/Plotly.Blazor/Traces/ParCats.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ParCats class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ParCats : ITrace, IEquatable<ParCats> diff --git a/Plotly.Blazor/Traces/ParCatsLib/ArrangementEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/ArrangementEnum.cs index 55805172..4044f050 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/ArrangementEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/ArrangementEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// <c>freeform</c>, the categories can freely move on the plane. If <c>fixed</c>, /// the categories and dimensions are stationary. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ArrangementEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/Dimension.cs b/Plotly.Blazor/Traces/ParCatsLib/Dimension.cs index f130187c..8ea0507e 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/Dimension.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/Dimension.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// <summary> /// The Dimension class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Dimension : IEquatable<Dimension> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/DimensionLib/CategoryOrderEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/DimensionLib/CategoryOrderEnum.cs index 0632c6f3..2ff63f64 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/DimensionLib/CategoryOrderEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/DimensionLib/CategoryOrderEnum.cs @@ -19,7 +19,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.DimensionLib /// that attribute will be identical to the <c>trace</c> mode. The unspecified /// categories will follow the categories in <c>categoryarray</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum CategoryOrderEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/Domain.cs b/Plotly.Blazor/Traces/ParCatsLib/Domain.cs index 56ce7eeb..a417b829 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/Domain.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ParCatsLib/HoverInfoFlag.cs index 1c9cf5b1..734942a4 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ParCatsLib/HoverOnEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/HoverOnEnum.cs index b451e75d..d7560ff9 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/HoverOnEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/HoverOnEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// take place per color per category. If <c>dimension</c>, hover interactions /// take place across all categories per dimension. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HoverOnEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LabelFont.cs b/Plotly.Blazor/Traces/ParCatsLib/LabelFont.cs index 21bccc04..e446d566 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LabelFont.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LabelFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// <summary> /// The LabelFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LabelFont : IEquatable<LabelFont> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ParCatsLib/Legendgrouptitle.cs index 7761e9fd..ed8833a2 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ParCatsLib/LegendgrouptitleLib/Font.cs index c35a0d45..0bd4ef1d 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/Line.cs b/Plotly.Blazor/Traces/ParCatsLib/Line.cs index 81ddad6a..5febb359 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/Line.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBar.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBar.cs index 5217f9f8..83ef9f6e 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ExponentFormatEnum.cs index 5eb2b786..e440dac5 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/LenModeEnum.cs index 1c2aaf2d..3b5ce877 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/OrientationEnum.cs index 727df5a5..abd106c1 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowExponentEnum.cs index 9d88432c..054d079f 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs index 5187683e..20b1b071 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs index cf26e604..56e7ef5e 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ThicknessModeEnum.cs index 656db440..19be4c01 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickFont.cs index b6732493..50515afa 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickFormatStop.cs index 80fa2a6e..bfc4f256 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs index dcedaafd..f70b6c6e 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs index a4153604..ce70ec60 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickModeEnum.cs index f1a69495..8ee66a93 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TicksEnum.cs index 5d6b6be4..523dcca7 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/Title.cs index af166033..a060e1c7 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TitleLib/Font.cs index 8332f31f..2da39ae8 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs index 0c20d050..f11b5e5e 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/XAnchorEnum.cs index 628875ba..9d3015af 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/XRefEnum.cs index 52d655b7..7e52253f 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/YAnchorEnum.cs index 5f951a68..22233020 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/YRefEnum.cs index f9c50e90..e6e331f7 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ShapeEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ShapeEnum.cs index 83a366ea..54a21d5e 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/LineLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/LineLib/ShapeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib.LineLib /// Sets the shape of the paths. If <c>linear</c>, paths are composed of straight /// lines. If <c>hspline</c>, paths are composed of horizontal curved splines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/SortPathsEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/SortPathsEnum.cs index 94c26db1..c527faad 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/SortPathsEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/SortPathsEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// dimension categories from left to right. If <c>backward</c>, sort paths /// based on dimensions categories from right to left. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SortPathsEnum { diff --git a/Plotly.Blazor/Traces/ParCatsLib/Stream.cs b/Plotly.Blazor/Traces/ParCatsLib/Stream.cs index d72f7e5f..249d8fea 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/Stream.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/TickFont.cs b/Plotly.Blazor/Traces/ParCatsLib/TickFont.cs index 0890a255..a90f5d1c 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ParCatsLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ParCatsLib/VisibleEnum.cs index c137a982..393bb51c 100644 --- a/Plotly.Blazor/Traces/ParCatsLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ParCatsLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCatsLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ParCoords.cs b/Plotly.Blazor/Traces/ParCoords.cs index 9ea7f554..43d103ad 100644 --- a/Plotly.Blazor/Traces/ParCoords.cs +++ b/Plotly.Blazor/Traces/ParCoords.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ParCoords class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ParCoords : ITrace, IEquatable<ParCoords> diff --git a/Plotly.Blazor/Traces/ParCoordsLib/Dimension.cs b/Plotly.Blazor/Traces/ParCoordsLib/Dimension.cs index 0f2d3330..9d77f0f9 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/Dimension.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/Dimension.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// <summary> /// The Dimension class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Dimension : IEquatable<Dimension> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/Domain.cs b/Plotly.Blazor/Traces/ParCoordsLib/Domain.cs index 4d45bef0..960d589b 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/Domain.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LabelFont.cs b/Plotly.Blazor/Traces/ParCoordsLib/LabelFont.cs index 62ea6245..9d611af9 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LabelFont.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LabelFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// <summary> /// The LabelFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LabelFont : IEquatable<LabelFont> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LabelSideEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LabelSideEnum.cs index 59a3ec7a..c1712573 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LabelSideEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LabelSideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// Tilted labels with <c>labelangle</c> may be positioned better inside margins /// when <c>labelposition</c> is set to <c>bottom</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LabelSideEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ParCoordsLib/Legendgrouptitle.cs index 9f5ca492..490dbf7e 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ParCoordsLib/LegendgrouptitleLib/Font.cs index 42c3848d..3a169be5 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/Line.cs b/Plotly.Blazor/Traces/ParCoordsLib/Line.cs index 2841afb1..6f47632d 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/Line.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBar.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBar.cs index cb466630..4c3eca38 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ExponentFormatEnum.cs index a1eb0a3d..b7bc98df 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/LenModeEnum.cs index 18a3640a..597a5b97 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/OrientationEnum.cs index cd33381d..d5252384 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowExponentEnum.cs index 830f1dd6..01c9086f 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs index 4e01f50e..04378410 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs index 79eed34e..06543d1d 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ThicknessModeEnum.cs index ae30ea4c..957356bb 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickFont.cs index bde26261..7f6a9954 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickFormatStop.cs index 14d04e32..0b1394eb 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs index 8e120ff6..2428d6c4 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs index 30f43a0c..d0a38c2d 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickModeEnum.cs index 3840da0a..e8a8a1a8 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TicksEnum.cs index fa636695..66fab870 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/Title.cs index 69f943bc..a9c3c6e2 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TitleLib/Font.cs index cca40cbc..5550f8b6 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs index cfffeb29..210a0db0 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/XAnchorEnum.cs index f91c4791..1858fc71 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/XRefEnum.cs index 1b5e3bf1..f0fa89f3 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/YAnchorEnum.cs index 7459c84c..59268df4 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/YRefEnum.cs index 132317e9..41cb9416 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/LineLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.LineLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/RangeFont.cs b/Plotly.Blazor/Traces/ParCoordsLib/RangeFont.cs index 2ed32dab..9e607f32 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/RangeFont.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/RangeFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// <summary> /// The RangeFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class RangeFont : IEquatable<RangeFont> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/Stream.cs b/Plotly.Blazor/Traces/ParCoordsLib/Stream.cs index eaaf4ccb..dd2a0665 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/Stream.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/TickFont.cs b/Plotly.Blazor/Traces/ParCoordsLib/TickFont.cs index 1018360c..4e3d78ca 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/Unselected.cs b/Plotly.Blazor/Traces/ParCoordsLib/Unselected.cs index af229133..5ec5a1e9 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/UnselectedLib/Line.cs b/Plotly.Blazor/Traces/ParCoordsLib/UnselectedLib/Line.cs index f68012c9..096a3ab6 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/UnselectedLib/Line.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/UnselectedLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib.UnselectedLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/ParCoordsLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ParCoordsLib/VisibleEnum.cs index 9f15487a..70a827f0 100644 --- a/Plotly.Blazor/Traces/ParCoordsLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ParCoordsLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ParCoordsLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Pie.cs b/Plotly.Blazor/Traces/Pie.cs index c8266595..f1ebadd6 100644 --- a/Plotly.Blazor/Traces/Pie.cs +++ b/Plotly.Blazor/Traces/Pie.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Pie class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Pie : ITrace, IEquatable<Pie> diff --git a/Plotly.Blazor/Traces/PieLib/DirectionEnum.cs b/Plotly.Blazor/Traces/PieLib/DirectionEnum.cs index 1e08af73..8f48a93f 100644 --- a/Plotly.Blazor/Traces/PieLib/DirectionEnum.cs +++ b/Plotly.Blazor/Traces/PieLib/DirectionEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// Specifies the direction at which succeeding sectors follow one another. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DirectionEnum { diff --git a/Plotly.Blazor/Traces/PieLib/Domain.cs b/Plotly.Blazor/Traces/PieLib/Domain.cs index ffb0ea8e..e8f18b9c 100644 --- a/Plotly.Blazor/Traces/PieLib/Domain.cs +++ b/Plotly.Blazor/Traces/PieLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/Traces/PieLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/PieLib/HoverInfoFlag.cs index d4c8d1fb..327e53e7 100644 --- a/Plotly.Blazor/Traces/PieLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/PieLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.PieLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/PieLib/HoverLabel.cs b/Plotly.Blazor/Traces/PieLib/HoverLabel.cs index d51614eb..c0cfedf4 100644 --- a/Plotly.Blazor/Traces/PieLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/PieLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/PieLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/PieLib/HoverLabelLib/AlignEnum.cs index e019f925..fd36763f 100644 --- a/Plotly.Blazor/Traces/PieLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/PieLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.PieLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/PieLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/PieLib/HoverLabelLib/Font.cs index 3e0198b7..e7ab18c1 100644 --- a/Plotly.Blazor/Traces/PieLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/PieLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PieLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/PieLib/InsideTextFont.cs b/Plotly.Blazor/Traces/PieLib/InsideTextFont.cs index acb08120..74b23c20 100644 --- a/Plotly.Blazor/Traces/PieLib/InsideTextFont.cs +++ b/Plotly.Blazor/Traces/PieLib/InsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// The InsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class InsideTextFont : IEquatable<InsideTextFont> diff --git a/Plotly.Blazor/Traces/PieLib/InsideTextOrientationEnum.cs b/Plotly.Blazor/Traces/PieLib/InsideTextOrientationEnum.cs index 08536106..e433a142 100644 --- a/Plotly.Blazor/Traces/PieLib/InsideTextOrientationEnum.cs +++ b/Plotly.Blazor/Traces/PieLib/InsideTextOrientationEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.PieLib /// of the sector. The <c>tangential</c> option orients text perpendicular to /// the radius of the sector. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum InsideTextOrientationEnum { diff --git a/Plotly.Blazor/Traces/PieLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/PieLib/Legendgrouptitle.cs index e5c910b1..f633e265 100644 --- a/Plotly.Blazor/Traces/PieLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/PieLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/PieLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/PieLib/LegendgrouptitleLib/Font.cs index e13892d0..1b8190da 100644 --- a/Plotly.Blazor/Traces/PieLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/PieLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PieLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/PieLib/Marker.cs b/Plotly.Blazor/Traces/PieLib/Marker.cs index 1fe4390b..b4d6a99e 100644 --- a/Plotly.Blazor/Traces/PieLib/Marker.cs +++ b/Plotly.Blazor/Traces/PieLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/PieLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/PieLib/MarkerLib/Line.cs index 9409e98d..501e50bc 100644 --- a/Plotly.Blazor/Traces/PieLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/PieLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PieLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/PieLib/MarkerLib/Pattern.cs b/Plotly.Blazor/Traces/PieLib/MarkerLib/Pattern.cs index fb916e02..0e2cf1a0 100644 --- a/Plotly.Blazor/Traces/PieLib/MarkerLib/Pattern.cs +++ b/Plotly.Blazor/Traces/PieLib/MarkerLib/Pattern.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PieLib.MarkerLib /// <summary> /// The Pattern class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Pattern : IEquatable<Pattern> diff --git a/Plotly.Blazor/Traces/PieLib/MarkerLib/PatternLib/FillModeEnum.cs b/Plotly.Blazor/Traces/PieLib/MarkerLib/PatternLib/FillModeEnum.cs index 29c0b81c..23156014 100644 --- a/Plotly.Blazor/Traces/PieLib/MarkerLib/PatternLib/FillModeEnum.cs +++ b/Plotly.Blazor/Traces/PieLib/MarkerLib/PatternLib/FillModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.PieLib.MarkerLib.PatternLib /// Determines whether <c>marker.color</c> should be used as a default to <c>bgcolor</c> /// or a <c>fgcolor</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillModeEnum { diff --git a/Plotly.Blazor/Traces/PieLib/MarkerLib/PatternLib/ShapeEnum.cs b/Plotly.Blazor/Traces/PieLib/MarkerLib/PatternLib/ShapeEnum.cs index b10f4197..8913ce92 100644 --- a/Plotly.Blazor/Traces/PieLib/MarkerLib/PatternLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/PieLib/MarkerLib/PatternLib/ShapeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.PieLib.MarkerLib.PatternLib /// Sets the shape of the pattern fill. By default, no pattern is used for filling /// the area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/PieLib/OutsideTextFont.cs b/Plotly.Blazor/Traces/PieLib/OutsideTextFont.cs index 68fbd23f..8cda813b 100644 --- a/Plotly.Blazor/Traces/PieLib/OutsideTextFont.cs +++ b/Plotly.Blazor/Traces/PieLib/OutsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// The OutsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class OutsideTextFont : IEquatable<OutsideTextFont> diff --git a/Plotly.Blazor/Traces/PieLib/Stream.cs b/Plotly.Blazor/Traces/PieLib/Stream.cs index 9c82a357..c26816a5 100644 --- a/Plotly.Blazor/Traces/PieLib/Stream.cs +++ b/Plotly.Blazor/Traces/PieLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/PieLib/TextFont.cs b/Plotly.Blazor/Traces/PieLib/TextFont.cs index 3d79d1d9..14272f29 100644 --- a/Plotly.Blazor/Traces/PieLib/TextFont.cs +++ b/Plotly.Blazor/Traces/PieLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/PieLib/TextInfoFlag.cs b/Plotly.Blazor/Traces/PieLib/TextInfoFlag.cs index 8e279527..4c5d725a 100644 --- a/Plotly.Blazor/Traces/PieLib/TextInfoFlag.cs +++ b/Plotly.Blazor/Traces/PieLib/TextInfoFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// Determines which trace information appear on the graph. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum TextInfoFlag diff --git a/Plotly.Blazor/Traces/PieLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/PieLib/TextPositionEnum.cs index f31a035a..16e3395e 100644 --- a/Plotly.Blazor/Traces/PieLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/PieLib/TextPositionEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// Specifies the location of the <c>textinfo</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/PieLib/Title.cs b/Plotly.Blazor/Traces/PieLib/Title.cs index 5ccc848a..d6c32274 100644 --- a/Plotly.Blazor/Traces/PieLib/Title.cs +++ b/Plotly.Blazor/Traces/PieLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PieLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/PieLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/PieLib/TitleLib/Font.cs index b1b1fca8..87232765 100644 --- a/Plotly.Blazor/Traces/PieLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/PieLib/TitleLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PieLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/PieLib/TitleLib/PositionEnum.cs b/Plotly.Blazor/Traces/PieLib/TitleLib/PositionEnum.cs index 2debaa03..bf3e5101 100644 --- a/Plotly.Blazor/Traces/PieLib/TitleLib/PositionEnum.cs +++ b/Plotly.Blazor/Traces/PieLib/TitleLib/PositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.PieLib.TitleLib /// Specifies the location of the <c>title</c>. Note that the title's position /// used to be set by the now deprecated <c>titleposition</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum PositionEnum { diff --git a/Plotly.Blazor/Traces/PieLib/VisibleEnum.cs b/Plotly.Blazor/Traces/PieLib/VisibleEnum.cs index 004a7a3e..d5fa0109 100644 --- a/Plotly.Blazor/Traces/PieLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/PieLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PieLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/PointCloud.cs b/Plotly.Blazor/Traces/PointCloud.cs index 3bf854ca..b8c88d00 100644 --- a/Plotly.Blazor/Traces/PointCloud.cs +++ b/Plotly.Blazor/Traces/PointCloud.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The PointCloud class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class PointCloud : ITrace, IEquatable<PointCloud> diff --git a/Plotly.Blazor/Traces/PointCloudLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/PointCloudLib/HoverInfoFlag.cs index ceeec07a..58cf0670 100644 --- a/Plotly.Blazor/Traces/PointCloudLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/PointCloudLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.PointCloudLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/PointCloudLib/HoverLabel.cs b/Plotly.Blazor/Traces/PointCloudLib/HoverLabel.cs index 8df21f7d..708d6719 100644 --- a/Plotly.Blazor/Traces/PointCloudLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/PointCloudLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PointCloudLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/PointCloudLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/PointCloudLib/HoverLabelLib/AlignEnum.cs index 6c7c998b..3a80ff24 100644 --- a/Plotly.Blazor/Traces/PointCloudLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/PointCloudLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.PointCloudLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/PointCloudLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/PointCloudLib/HoverLabelLib/Font.cs index 2231f2cb..a2464e2b 100644 --- a/Plotly.Blazor/Traces/PointCloudLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/PointCloudLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.PointCloudLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/PointCloudLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/PointCloudLib/Legendgrouptitle.cs index 35e6b24c..175c84dd 100644 --- a/Plotly.Blazor/Traces/PointCloudLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/PointCloudLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PointCloudLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/PointCloudLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/PointCloudLib/LegendgrouptitleLib/Font.cs index 3909ecea..9b5f86d1 100644 --- a/Plotly.Blazor/Traces/PointCloudLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/PointCloudLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PointCloudLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/PointCloudLib/Marker.cs b/Plotly.Blazor/Traces/PointCloudLib/Marker.cs index f65ab436..2e659665 100644 --- a/Plotly.Blazor/Traces/PointCloudLib/Marker.cs +++ b/Plotly.Blazor/Traces/PointCloudLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PointCloudLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/PointCloudLib/MarkerLib/Border.cs b/Plotly.Blazor/Traces/PointCloudLib/MarkerLib/Border.cs index cba7a943..47039422 100644 --- a/Plotly.Blazor/Traces/PointCloudLib/MarkerLib/Border.cs +++ b/Plotly.Blazor/Traces/PointCloudLib/MarkerLib/Border.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PointCloudLib.MarkerLib /// <summary> /// The Border class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Border : IEquatable<Border> { diff --git a/Plotly.Blazor/Traces/PointCloudLib/Stream.cs b/Plotly.Blazor/Traces/PointCloudLib/Stream.cs index 85a49ebe..43605e39 100644 --- a/Plotly.Blazor/Traces/PointCloudLib/Stream.cs +++ b/Plotly.Blazor/Traces/PointCloudLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PointCloudLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/PointCloudLib/VisibleEnum.cs b/Plotly.Blazor/Traces/PointCloudLib/VisibleEnum.cs index b6d3d617..9fffe9ee 100644 --- a/Plotly.Blazor/Traces/PointCloudLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/PointCloudLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.PointCloudLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Sankey.cs b/Plotly.Blazor/Traces/Sankey.cs index c247f285..cced77f0 100644 --- a/Plotly.Blazor/Traces/Sankey.cs +++ b/Plotly.Blazor/Traces/Sankey.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Sankey class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Sankey : ITrace, IEquatable<Sankey> diff --git a/Plotly.Blazor/Traces/SankeyLib/ArrangementEnum.cs b/Plotly.Blazor/Traces/SankeyLib/ArrangementEnum.cs index 58129325..8eaddb6f 100644 --- a/Plotly.Blazor/Traces/SankeyLib/ArrangementEnum.cs +++ b/Plotly.Blazor/Traces/SankeyLib/ArrangementEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// the nodes can freely move on the plane. If value is <c>fixed</c>, the nodes /// are stationary. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ArrangementEnum { diff --git a/Plotly.Blazor/Traces/SankeyLib/Domain.cs b/Plotly.Blazor/Traces/SankeyLib/Domain.cs index 34c0c81c..f45a6aa2 100644 --- a/Plotly.Blazor/Traces/SankeyLib/Domain.cs +++ b/Plotly.Blazor/Traces/SankeyLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/Traces/SankeyLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/SankeyLib/HoverInfoFlag.cs index b6e7fc06..b53b2f70 100644 --- a/Plotly.Blazor/Traces/SankeyLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/SankeyLib/HoverInfoFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// is superseded by <c>node.hoverinfo</c> and <c>node.hoverinfo</c> for nodes /// and links respectively. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/SankeyLib/HoverLabel.cs b/Plotly.Blazor/Traces/SankeyLib/HoverLabel.cs index 1cea51e7..1bf119de 100644 --- a/Plotly.Blazor/Traces/SankeyLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/SankeyLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/SankeyLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/SankeyLib/HoverLabelLib/AlignEnum.cs index 8b4f23f7..b2e39e92 100644 --- a/Plotly.Blazor/Traces/SankeyLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/SankeyLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/SankeyLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/SankeyLib/HoverLabelLib/Font.cs index 96478649..7b6c8417 100644 --- a/Plotly.Blazor/Traces/SankeyLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/SankeyLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/SankeyLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/SankeyLib/Legendgrouptitle.cs index 6ef777f0..10ac18f0 100644 --- a/Plotly.Blazor/Traces/SankeyLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/SankeyLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/SankeyLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/SankeyLib/LegendgrouptitleLib/Font.cs index f3057154..541496d5 100644 --- a/Plotly.Blazor/Traces/SankeyLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/SankeyLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/SankeyLib/Link.cs b/Plotly.Blazor/Traces/SankeyLib/Link.cs index 41923dcf..c2cb7235 100644 --- a/Plotly.Blazor/Traces/SankeyLib/Link.cs +++ b/Plotly.Blazor/Traces/SankeyLib/Link.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// <summary> /// The Link class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Link : IEquatable<Link> diff --git a/Plotly.Blazor/Traces/SankeyLib/LinkLib/ConcentrationScales.cs b/Plotly.Blazor/Traces/SankeyLib/LinkLib/ConcentrationScales.cs index b13a9b49..a4e0cbe6 100644 --- a/Plotly.Blazor/Traces/SankeyLib/LinkLib/ConcentrationScales.cs +++ b/Plotly.Blazor/Traces/SankeyLib/LinkLib/ConcentrationScales.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.LinkLib /// <summary> /// The ConcentrationScales class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ConcentrationScales : IEquatable<ConcentrationScales> { diff --git a/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverInfoEnum.cs b/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverInfoEnum.cs index 70a5bd5e..7c5a77b6 100644 --- a/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverInfoEnum.cs +++ b/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverInfoEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.LinkLib /// or <c>skip</c> are set, no information is displayed upon hovering. But, /// if <c>none</c> is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoEnum { diff --git a/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabel.cs b/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabel.cs index cd90352d..b44ad597 100644 --- a/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.LinkLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabelLib/AlignEnum.cs index 03a86832..e45059ff 100644 --- a/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.LinkLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabelLib/Font.cs index b81cbe43..e3bf245d 100644 --- a/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/SankeyLib/LinkLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.LinkLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/SankeyLib/LinkLib/Line.cs b/Plotly.Blazor/Traces/SankeyLib/LinkLib/Line.cs index fbf8b2c7..d2fee165 100644 --- a/Plotly.Blazor/Traces/SankeyLib/LinkLib/Line.cs +++ b/Plotly.Blazor/Traces/SankeyLib/LinkLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.LinkLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/SankeyLib/Node.cs b/Plotly.Blazor/Traces/SankeyLib/Node.cs index 2acbcb23..98b45c73 100644 --- a/Plotly.Blazor/Traces/SankeyLib/Node.cs +++ b/Plotly.Blazor/Traces/SankeyLib/Node.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// <summary> /// The Node class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Node : IEquatable<Node> diff --git a/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverInfoEnum.cs b/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverInfoEnum.cs index 06281d61..757ad072 100644 --- a/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverInfoEnum.cs +++ b/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverInfoEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.NodeLib /// or <c>skip</c> are set, no information is displayed upon hovering. But, /// if <c>none</c> is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoEnum { diff --git a/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabel.cs b/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabel.cs index 1e385323..9b8982bb 100644 --- a/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.NodeLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabelLib/AlignEnum.cs index 71f6bae8..7e76a70a 100644 --- a/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.NodeLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabelLib/Font.cs index b906a7ea..835cb43f 100644 --- a/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/SankeyLib/NodeLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.NodeLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/SankeyLib/NodeLib/Line.cs b/Plotly.Blazor/Traces/SankeyLib/NodeLib/Line.cs index f85d4d80..e2e88d92 100644 --- a/Plotly.Blazor/Traces/SankeyLib/NodeLib/Line.cs +++ b/Plotly.Blazor/Traces/SankeyLib/NodeLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SankeyLib.NodeLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/SankeyLib/OrientationEnum.cs b/Plotly.Blazor/Traces/SankeyLib/OrientationEnum.cs index b50d7ea9..c7f58c82 100644 --- a/Plotly.Blazor/Traces/SankeyLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/SankeyLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// <summary> /// Sets the orientation of the Sankey diagram. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/SankeyLib/Stream.cs b/Plotly.Blazor/Traces/SankeyLib/Stream.cs index 647db153..fb8b9b75 100644 --- a/Plotly.Blazor/Traces/SankeyLib/Stream.cs +++ b/Plotly.Blazor/Traces/SankeyLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/SankeyLib/TextFont.cs b/Plotly.Blazor/Traces/SankeyLib/TextFont.cs index e60b8891..936d41bc 100644 --- a/Plotly.Blazor/Traces/SankeyLib/TextFont.cs +++ b/Plotly.Blazor/Traces/SankeyLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/SankeyLib/VisibleEnum.cs b/Plotly.Blazor/Traces/SankeyLib/VisibleEnum.cs index 5ff727e4..92333f61 100644 --- a/Plotly.Blazor/Traces/SankeyLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/SankeyLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SankeyLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Scatter.cs b/Plotly.Blazor/Traces/Scatter.cs index 8d6d4592..925716ad 100644 --- a/Plotly.Blazor/Traces/Scatter.cs +++ b/Plotly.Blazor/Traces/Scatter.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Scatter class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Scatter : ITrace, IEquatable<Scatter> diff --git a/Plotly.Blazor/Traces/Scatter3D.cs b/Plotly.Blazor/Traces/Scatter3D.cs index af8ed81b..c54257c1 100644 --- a/Plotly.Blazor/Traces/Scatter3D.cs +++ b/Plotly.Blazor/Traces/Scatter3D.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Scatter3D class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Scatter3D : ITrace, IEquatable<Scatter3D> diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ErrorX.cs b/Plotly.Blazor/Traces/Scatter3DLib/ErrorX.cs index a37a1b18..b00aa77e 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ErrorX.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ErrorX.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// The ErrorX class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorX : IEquatable<ErrorX> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ErrorXLib/TypeEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/ErrorXLib/TypeEnum.cs index 41033e6e..d95a6d20 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ErrorXLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ErrorXLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.ErrorXLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ErrorY.cs b/Plotly.Blazor/Traces/Scatter3DLib/ErrorY.cs index 68aefe24..629a40c9 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ErrorY.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ErrorY.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// The ErrorY class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorY : IEquatable<ErrorY> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ErrorYLib/TypeEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/ErrorYLib/TypeEnum.cs index 01f3b4b4..14780354 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ErrorYLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ErrorYLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.ErrorYLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ErrorZ.cs b/Plotly.Blazor/Traces/Scatter3DLib/ErrorZ.cs index f8c216ce..18a5e123 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ErrorZ.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ErrorZ.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// The ErrorZ class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorZ : IEquatable<ErrorZ> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ErrorZLib/TypeEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/ErrorZLib/TypeEnum.cs index e9763616..9b269c54 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ErrorZLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ErrorZLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.ErrorZLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/Scatter3DLib/HoverInfoFlag.cs index 0a25c665..0ae94ce9 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/Scatter3DLib/HoverLabel.cs b/Plotly.Blazor/Traces/Scatter3DLib/HoverLabel.cs index cd5af0db..b55597f6 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/Scatter3DLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/HoverLabelLib/AlignEnum.cs index 0e871033..6f5182ab 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/Scatter3DLib/HoverLabelLib/Font.cs index 75bae3e3..f8354be2 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/Scatter3DLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/Scatter3DLib/Legendgrouptitle.cs index 1ebc7e0e..93d42379 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/Scatter3DLib/LegendgrouptitleLib/Font.cs index 168551ca..ba0a5ffc 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/Line.cs b/Plotly.Blazor/Traces/Scatter3DLib/Line.cs index 4bbdf6f8..b3bb10fa 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/Line.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBar.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBar.cs index ecabc441..fb41a7e4 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ExponentFormatEnum.cs index a65207b8..6e69e931 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/LenModeEnum.cs index 3f78d7af..54435c57 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/OrientationEnum.cs index 496b5e86..b4ec6e60 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowExponentEnum.cs index 3bbec59d..8c3a4e75 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs index c0064618..ba63f3b6 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs index 0421e775..b253f4f7 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ThicknessModeEnum.cs index 4b4ce8a8..363257e8 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickFont.cs index 863926ae..08474e89 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickFormatStop.cs index b05ac991..108abc5d 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs index b122e959..e63f6935 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs index 7be290c4..262c1722 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickModeEnum.cs index cf17db1f..dfa3c9fc 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TicksEnum.cs index cb502e9a..989e5b99 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/Title.cs index 8d17e8b4..a8926b1a 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TitleLib/Font.cs index 33ed2a85..6861880f 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs index 84c869df..47cb3b64 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/XAnchorEnum.cs index efeb1c93..1679f370 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/XRefEnum.cs index b4812128..7bf023d4 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/YAnchorEnum.cs index eb9f5722..1fd9a631 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/YRefEnum.cs index db3bc86b..a5535321 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/DashEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/DashEnum.cs index 11b27d47..7919776b 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/LineLib/DashEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/LineLib/DashEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.LineLib /// <summary> /// Sets the dash style of the lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DashEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/Marker.cs b/Plotly.Blazor/Traces/Scatter3DLib/Marker.cs index b847b55b..cb9c23c0 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/Marker.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBar.cs index c5a1533a..562f4ef8 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 3352af21..fe1356de 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/LenModeEnum.cs index 5c5a6c42..e76a0412 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/OrientationEnum.cs index df40849f..811b0de1 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index acc30900..94bce05d 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 792688f4..c70202f6 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index fd26996e..b43d0df0 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index e24dfdab..c9a035ce 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickFont.cs index 2380ba19..707563ca 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 6449b7dd..c1135781 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 158ee544..65aa34d0 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 8c5fc1a9..1315ef6f 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 5d75a682..32f19b4e 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TicksEnum.cs index 8dbb3161..1cd7fd4b 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/Title.cs index e12b2a07..f5c2f6bb 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index d271ba77..b0bc967f 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index c6c974ee..0b7bb29d 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 64287534..3b043865 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/XRefEnum.cs index 6f880572..cd36cbdf 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index 1071f676..b96adfbd 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/YRefEnum.cs index 9a120e33..5759f426 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/Line.cs index 67a547e4..0e1895c8 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/SizeModeEnum.cs index e05acd42..28409f63 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/SymbolEnum.cs index 4135b1c6..c20625c4 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/MarkerLib/SymbolEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.MarkerLib /// <summary> /// Sets the marker symbol type. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ModeFlag.cs b/Plotly.Blazor/Traces/Scatter3DLib/ModeFlag.cs index 26661af5..b4bb1de8 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ModeFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// 20 points and the trace is not stacked then the default is <c>lines+markers</c>. /// Otherwise, <c>lines</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/Scatter3DLib/Projection.cs b/Plotly.Blazor/Traces/Scatter3DLib/Projection.cs index f3155aea..a3d9e023 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/Projection.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/Projection.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// The Projection class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Projection : IEquatable<Projection> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/X.cs b/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/X.cs index f1a33cb6..893ba159 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/X.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/X.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.ProjectionLib /// <summary> /// The X class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class X : IEquatable<X> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/Y.cs b/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/Y.cs index 57e5ef1e..60fe8e71 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/Y.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/Y.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.ProjectionLib /// <summary> /// The Y class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Y : IEquatable<Y> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/Z.cs b/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/Z.cs index 9c647780..e0b856c5 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/Z.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ProjectionLib/Z.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib.ProjectionLib /// <summary> /// The Z class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Z : IEquatable<Z> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/Stream.cs b/Plotly.Blazor/Traces/Scatter3DLib/Stream.cs index bfdc0ea3..3aa77fee 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/Stream.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/SurfaceAxisEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/SurfaceAxisEnum.cs index 2048e9c7..21e8ab8f 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/SurfaceAxisEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/SurfaceAxisEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <c>1</c>, <c>2</c>, the scatter points are filled with a Delaunay surface /// about the x, y, z respectively. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SurfaceAxisEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/TextFont.cs b/Plotly.Blazor/Traces/Scatter3DLib/TextFont.cs index 0258fe75..70a5f4de 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/TextFont.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/Scatter3DLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/TextPositionEnum.cs index 55417b7b..e6f57ab0 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/VisibleEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/VisibleEnum.cs index 920f39c6..e1810977 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/XCalendarEnum.cs index e4b5669b..f4dbab26 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/YCalendarEnum.cs index 199a64cf..4b925def 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/Scatter3DLib/ZCalendarEnum.cs b/Plotly.Blazor/Traces/Scatter3DLib/ZCalendarEnum.cs index ea9bc353..fbd4cea2 100644 --- a/Plotly.Blazor/Traces/Scatter3DLib/ZCalendarEnum.cs +++ b/Plotly.Blazor/Traces/Scatter3DLib/ZCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.Scatter3DLib /// <summary> /// Sets the calendar system to use with <c>z</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ZCalendarEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpet.cs b/Plotly.Blazor/Traces/ScatterCarpet.cs index 796c5657..a810009f 100644 --- a/Plotly.Blazor/Traces/ScatterCarpet.cs +++ b/Plotly.Blazor/Traces/ScatterCarpet.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ScatterCarpet class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ScatterCarpet : ITrace, IEquatable<ScatterCarpet> diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/FillEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/FillEnum.cs index 6d22127d..f9c709ba 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/FillEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/FillEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// contour lines), and behaves like <c>toself</c> if there is no trace before /// it. <c>tonext</c> should not be used if one trace does not enclose the other. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/HoverInfoFlag.cs index e67ebff6..3b80a975 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabel.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabel.cs index 236299e0..e4c04734 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabelLib/AlignEnum.cs index f9f8781f..1aed1d14 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabelLib/Font.cs index 2f0c5a5c..3aba67db 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/HoverOnFlag.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/HoverOnFlag.cs index d71469e8..04e341d8 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/HoverOnFlag.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/HoverOnFlag.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// and there are no markers or text, then the default is <c>fills</c>, otherwise /// it is <c>points</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverOnFlag diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/Legendgrouptitle.cs index 3fe23315..763c9ff9 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/LegendgrouptitleLib/Font.cs index b62f8b46..0dbeb438 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/Line.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/Line.cs index 16061094..b4a6a4bd 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/LineLib/ShapeEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/LineLib/ShapeEnum.cs index f3b88080..5d4bb77d 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/LineLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/LineLib/ShapeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.LineLib /// spline interpolation. The other available values correspond to step-wise /// line shapes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/Marker.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/Marker.cs index 7ce045ae..945112c3 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/AngleRefEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/AngleRefEnum.cs index 4134334b..d1964a33 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/AngleRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/AngleRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib /// along the line from the previous point to this one. With <c>up</c>, angle /// 0 points toward the top of the screen. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AngleRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBar.cs index 1e6c085b..9e80d519 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 9f683366..29a57466 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/LenModeEnum.cs index 465cf11c..c8fb8f60 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/OrientationEnum.cs index 51644bd0..6fcf0fe8 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 0a62924d..3a13fb20 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 7021f20e..0d1549e4 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index f849742e..71962eb7 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 30af498c..ac962945 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickFont.cs index fd701e92..5f72253d 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickFormatStop.cs index abc82a32..54e83263 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 3d0d70a1..d6b0a217 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 81b8f157..aff967ee 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 396e3a99..deeee8f9 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TicksEnum.cs index 2a9336ef..b9cacb09 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/Title.cs index fd48de03..9e8a36a2 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index b5d71e39..1509a874 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 39d9a5a4..0deac493 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 4278875c..392a862e 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/XRefEnum.cs index 6f168947..7711e97e 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index c0c6469a..30e5acab 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/YRefEnum.cs index 76ea914f..6726ac94 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/Gradient.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/Gradient.cs index c9f78f2c..8bc50ad1 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/Gradient.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/Gradient.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib /// <summary> /// The Gradient class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Gradient : IEquatable<Gradient> diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/GradientLib/TypeEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/GradientLib/TypeEnum.cs index 27116dce..9b1412b3 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/GradientLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/GradientLib/TypeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib.GradientLib /// <summary> /// Sets the type of gradient used to fill the markers /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/Line.cs index ed0238e6..63bb156e 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/SizeModeEnum.cs index a49f37fc..72943298 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/SymbolEnum.cs index d451bac6..e3ecbd97 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/ModeFlag.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/ModeFlag.cs index 3c7e4506..916133b6 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/ModeFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// 20 points and the trace is not stacked then the default is <c>lines+markers</c>. /// Otherwise, <c>lines</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/Selected.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/Selected.cs index 2e2461b8..1ecc1f1b 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/Selected.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/SelectedLib/Marker.cs index 578a027e..3d005ff6 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/SelectedLib/TextFont.cs index 743ced55..ae44b3e3 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/Stream.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/Stream.cs index 4504c7a3..0ce40ecc 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/Stream.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/TextFont.cs index 9efe6176..4ecaa02e 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/TextPositionEnum.cs index 300bd026..90555db8 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/Unselected.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/Unselected.cs index 7225ca7c..df5c1b8b 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/UnselectedLib/Marker.cs index f3344018..670e9cdc 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/UnselectedLib/TextFont.cs index b5d5cd3f..6facae9f 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterCarpetLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ScatterCarpetLib/VisibleEnum.cs index b0a3c306..2fe56a05 100644 --- a/Plotly.Blazor/Traces/ScatterCarpetLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ScatterCarpetLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterCarpetLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeo.cs b/Plotly.Blazor/Traces/ScatterGeo.cs index 9ccf4738..a13aa5b5 100644 --- a/Plotly.Blazor/Traces/ScatterGeo.cs +++ b/Plotly.Blazor/Traces/ScatterGeo.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ScatterGeo class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ScatterGeo : ITrace, IEquatable<ScatterGeo> diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/FillEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/FillEnum.cs index aace2a6f..a41d3158 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/FillEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/FillEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// <c>none</c>. <c>toself</c> connects the endpoints of the trace (or each /// segment of the trace if it has gaps) into a closed shape. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ScatterGeoLib/HoverInfoFlag.cs index e46e3ab7..55129ac0 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabel.cs b/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabel.cs index 3202c549..268ec4c8 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabelLib/AlignEnum.cs index ff5249a2..3b7e782c 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabelLib/Font.cs index 136fc5a0..6683c446 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ScatterGeoLib/Legendgrouptitle.cs index 46f10202..b35b107d 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterGeoLib/LegendgrouptitleLib/Font.cs index 0d56094c..206224e5 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/Line.cs b/Plotly.Blazor/Traces/ScatterGeoLib/Line.cs index 61fedc32..5da31e89 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/LocationModeEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/LocationModeEnum.cs index 27cf56bc..60b441d1 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/LocationModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/LocationModeEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// corresponds to features from a custom GeoJSON linked to the <c>geojson</c> /// attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LocationModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/Marker.cs b/Plotly.Blazor/Traces/ScatterGeoLib/Marker.cs index 2c60e51b..ea6f9f1c 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/AngleRefEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/AngleRefEnum.cs index 3b65b81e..04401c82 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/AngleRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/AngleRefEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib /// 0 points toward the top of the screen. With <c>north</c>, angle 0 points /// north based on the current map projection. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AngleRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBar.cs index a08c15d9..6dd6c2ac 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 70f4d0c6..5e2b1492 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/LenModeEnum.cs index 5b7ab49f..cdd266ba 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/OrientationEnum.cs index f4e0fd16..38a8d4f9 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 6882face..b0716ca0 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 1a01ab80..80db8715 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index ae098ebf..ff2191dd 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 1d33bc09..c5d7137a 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickFont.cs index 4ec0fb50..78fd7878 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickFormatStop.cs index bafd0dbe..748e863d 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 6cc1601e..ae79f4bc 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 8c1ca378..09e50382 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 9436ad0f..fe380c00 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TicksEnum.cs index 727faa48..0f3272dc 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/Title.cs index 194a64dd..4437b035 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index be4a8a6f..190922d5 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 8af27f51..59b074d5 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 03063fd8..d6b10804 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/XRefEnum.cs index 396c5730..ad9cf632 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index 9846a14a..5e3f005d 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/YRefEnum.cs index 582a700b..bbb92634 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/Gradient.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/Gradient.cs index 68c92256..9a96289d 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/Gradient.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/Gradient.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib /// <summary> /// The Gradient class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Gradient : IEquatable<Gradient> diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/GradientLib/TypeEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/GradientLib/TypeEnum.cs index 527e173c..64d222a9 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/GradientLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/GradientLib/TypeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib.GradientLib /// <summary> /// Sets the type of gradient used to fill the markers /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/Line.cs index bd52509d..e88d171c 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/SizeModeEnum.cs index c2c0c249..4acab644 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/SymbolEnum.cs index f180ea20..21e79ca3 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/ModeFlag.cs b/Plotly.Blazor/Traces/ScatterGeoLib/ModeFlag.cs index 2f278fc2..ce0961b1 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/ModeFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// 20 points and the trace is not stacked then the default is <c>lines+markers</c>. /// Otherwise, <c>lines</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/Selected.cs b/Plotly.Blazor/Traces/ScatterGeoLib/Selected.cs index 8c854fd7..4f8cd7b1 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/Selected.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterGeoLib/SelectedLib/Marker.cs index adfc0a00..41b8da73 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterGeoLib/SelectedLib/TextFont.cs index 09b20be5..76b4b4f0 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/Stream.cs b/Plotly.Blazor/Traces/ScatterGeoLib/Stream.cs index aba3b27b..35e3b962 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/Stream.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterGeoLib/TextFont.cs index 2ad7cb9a..0e8c12ee 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/TextPositionEnum.cs index dd17c80e..dd5b4d7a 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/Unselected.cs b/Plotly.Blazor/Traces/ScatterGeoLib/Unselected.cs index a8d93ffe..27b69e50 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterGeoLib/UnselectedLib/Marker.cs index 32e26fa2..8da4367a 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterGeoLib/UnselectedLib/TextFont.cs index ca0c3687..5fbc58c4 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterGeoLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ScatterGeoLib/VisibleEnum.cs index cdc4a9f9..e964475e 100644 --- a/Plotly.Blazor/Traces/ScatterGeoLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGeoLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGeoLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ScatterGl.cs b/Plotly.Blazor/Traces/ScatterGl.cs index 519b4341..c3c854a8 100644 --- a/Plotly.Blazor/Traces/ScatterGl.cs +++ b/Plotly.Blazor/Traces/ScatterGl.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ScatterGl class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ScatterGl : ITrace, IEquatable<ScatterGl> diff --git a/Plotly.Blazor/Traces/ScatterGlLib/ErrorX.cs b/Plotly.Blazor/Traces/ScatterGlLib/ErrorX.cs index 50d2d50a..a41f749d 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/ErrorX.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/ErrorX.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// The ErrorX class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorX : IEquatable<ErrorX> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/ErrorXLib/TypeEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/ErrorXLib/TypeEnum.cs index c15409a7..9fcc7cf2 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/ErrorXLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/ErrorXLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.ErrorXLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/ErrorY.cs b/Plotly.Blazor/Traces/ScatterGlLib/ErrorY.cs index b55e4521..5b1c4422 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/ErrorY.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/ErrorY.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// The ErrorY class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorY : IEquatable<ErrorY> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/ErrorYLib/TypeEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/ErrorYLib/TypeEnum.cs index 99558195..f63eaa88 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/ErrorYLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/ErrorYLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.ErrorYLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/FillEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/FillEnum.cs index 2341efaa..f735d546 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/FillEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/FillEnum.cs @@ -27,7 +27,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// are not already consecutive, the later ones will be pushed down in the drawing /// order. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ScatterGlLib/HoverInfoFlag.cs index 65e84367..472ce34b 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ScatterGlLib/HoverLabel.cs b/Plotly.Blazor/Traces/ScatterGlLib/HoverLabel.cs index 8a4f97d5..fe3875cd 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ScatterGlLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/HoverLabelLib/AlignEnum.cs index 5b37714e..2c265529 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ScatterGlLib/HoverLabelLib/Font.cs index defe6b0a..1a5803ea 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ScatterGlLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ScatterGlLib/Legendgrouptitle.cs index 8a9d30d1..39a0738e 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterGlLib/LegendgrouptitleLib/Font.cs index 018d77e6..4db666d3 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/Line.cs b/Plotly.Blazor/Traces/ScatterGlLib/Line.cs index a2348efd..f7712e39 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/LineLib/DashEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/LineLib/DashEnum.cs index 5d0dbabe..ead353b5 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/LineLib/DashEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/LineLib/DashEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.LineLib /// <summary> /// Sets the style of the lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DashEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/LineLib/ShapeEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/LineLib/ShapeEnum.cs index 73a574fd..cb03e2e3 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/LineLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/LineLib/ShapeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.LineLib /// <summary> /// Determines the line shape. The values correspond to step-wise line shapes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/Marker.cs b/Plotly.Blazor/Traces/ScatterGlLib/Marker.cs index 5c2b6955..da8e9ae3 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBar.cs index 5baddabb..1da353a0 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index b0f046a5..fe01ce4c 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/LenModeEnum.cs index 0f1b9c84..052cfe63 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/OrientationEnum.cs index ad98a2ad..426d0571 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 2e35faeb..1c094732 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 3640c22b..f56f4c21 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index eb952756..a0f021b1 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 5c61ee59..3fb007b6 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickFont.cs index e5bed100..d6dc5d5a 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 8481c9aa..304f0ae3 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 9e4c80e6..19807619 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 193e2c25..c87d0ed9 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 47600265..4b75ae39 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TicksEnum.cs index 0fcf0f34..21947fb2 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/Title.cs index fa1300b9..3b9c1f6f 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 0ff93d5c..e9afd9b8 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 4e73cd01..d43f5ef0 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 94b2a614..715d24c7 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/XRefEnum.cs index d2d00e66..bed2224a 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index 858eee11..29f4d1fa 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/YRefEnum.cs index 7bfbc090..6d8247e6 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/Line.cs index 805c5b7c..bb789a7b 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/SizeModeEnum.cs index 045fdf90..c62d4ac3 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/SymbolEnum.cs index f0af19b2..e5d503d9 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/ModeFlag.cs b/Plotly.Blazor/Traces/ScatterGlLib/ModeFlag.cs index de0fb07b..2e2d85eb 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/ModeFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// Determines the drawing mode for this scatter trace. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/ScatterGlLib/Selected.cs b/Plotly.Blazor/Traces/ScatterGlLib/Selected.cs index 3da75f37..9fa6ffd0 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/Selected.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterGlLib/SelectedLib/Marker.cs index 517e9f2e..ea8c8935 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterGlLib/SelectedLib/TextFont.cs index 9547f825..f3f8aa31 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/Stream.cs b/Plotly.Blazor/Traces/ScatterGlLib/Stream.cs index c260de90..dbdea0c3 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/Stream.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterGlLib/TextFont.cs index 02ffc8bb..3990912a 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/ScatterGlLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/TextPositionEnum.cs index 8d77b989..84fc5977 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/Unselected.cs b/Plotly.Blazor/Traces/ScatterGlLib/Unselected.cs index ef16a73b..fc29c4ca 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterGlLib/UnselectedLib/Marker.cs index 69e4f405..cd405ff1 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterGlLib/UnselectedLib/TextFont.cs index 4c389802..e53b2d8b 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/VisibleEnum.cs index 87a23530..08d6abaf 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/XCalendarEnum.cs index 1f58d10e..d12d0d8b 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/XPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/XPeriodAlignmentEnum.cs index 32e93943..767be31b 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/XPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/XPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the x axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/YCalendarEnum.cs index dba5ad1d..5a4c4899 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/ScatterGlLib/YPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/ScatterGlLib/YPeriodAlignmentEnum.cs index ff15d957..45667149 100644 --- a/Plotly.Blazor/Traces/ScatterGlLib/YPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterGlLib/YPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterGlLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the y axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/ErrorX.cs b/Plotly.Blazor/Traces/ScatterLib/ErrorX.cs index 45032c97..46662984 100644 --- a/Plotly.Blazor/Traces/ScatterLib/ErrorX.cs +++ b/Plotly.Blazor/Traces/ScatterLib/ErrorX.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The ErrorX class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorX : IEquatable<ErrorX> { diff --git a/Plotly.Blazor/Traces/ScatterLib/ErrorXLib/TypeEnum.cs b/Plotly.Blazor/Traces/ScatterLib/ErrorXLib/TypeEnum.cs index efcd9e0e..fbde9b8f 100644 --- a/Plotly.Blazor/Traces/ScatterLib/ErrorXLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/ErrorXLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.ErrorXLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/ErrorY.cs b/Plotly.Blazor/Traces/ScatterLib/ErrorY.cs index bbc941c4..8afe9823 100644 --- a/Plotly.Blazor/Traces/ScatterLib/ErrorY.cs +++ b/Plotly.Blazor/Traces/ScatterLib/ErrorY.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The ErrorY class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ErrorY : IEquatable<ErrorY> { diff --git a/Plotly.Blazor/Traces/ScatterLib/ErrorYLib/TypeEnum.cs b/Plotly.Blazor/Traces/ScatterLib/ErrorYLib/TypeEnum.cs index b6a8ec45..4cb42468 100644 --- a/Plotly.Blazor/Traces/ScatterLib/ErrorYLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/ErrorYLib/TypeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.ErrorYLib /// correspond to the square of the underlying data. If <c>data</c>, the bar /// lengths are set with data set <c>array</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/FillEnum.cs b/Plotly.Blazor/Traces/ScatterLib/FillEnum.cs index 3f96c14e..a572b3fe 100644 --- a/Plotly.Blazor/Traces/ScatterLib/FillEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/FillEnum.cs @@ -27,7 +27,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// are not already consecutive, the later ones will be pushed down in the drawing /// order. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/FillPattern.cs b/Plotly.Blazor/Traces/ScatterLib/FillPattern.cs index f722bd01..db1957d9 100644 --- a/Plotly.Blazor/Traces/ScatterLib/FillPattern.cs +++ b/Plotly.Blazor/Traces/ScatterLib/FillPattern.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The FillPattern class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class FillPattern : IEquatable<FillPattern> diff --git a/Plotly.Blazor/Traces/ScatterLib/FillPatternLib/FillModeEnum.cs b/Plotly.Blazor/Traces/ScatterLib/FillPatternLib/FillModeEnum.cs index d689401c..e060c78d 100644 --- a/Plotly.Blazor/Traces/ScatterLib/FillPatternLib/FillModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/FillPatternLib/FillModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.FillPatternLib /// Determines whether <c>marker.color</c> should be used as a default to <c>bgcolor</c> /// or a <c>fgcolor</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/FillPatternLib/ShapeEnum.cs b/Plotly.Blazor/Traces/ScatterLib/FillPatternLib/ShapeEnum.cs index 8e4d73ca..ab44c8f2 100644 --- a/Plotly.Blazor/Traces/ScatterLib/FillPatternLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/FillPatternLib/ShapeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.FillPatternLib /// Sets the shape of the pattern fill. By default, no pattern is used for filling /// the area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/GroupNormEnum.cs b/Plotly.Blazor/Traces/ScatterLib/GroupNormEnum.cs index 88dc6f9e..9e9ede9d 100644 --- a/Plotly.Blazor/Traces/ScatterLib/GroupNormEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/GroupNormEnum.cs @@ -18,7 +18,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// percentages. If there are multiple subplots, or multiple <c>stackgroup</c>s /// on one subplot, each will be normalized within its own set. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum GroupNormEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ScatterLib/HoverInfoFlag.cs index 7cd717c7..51786ef8 100644 --- a/Plotly.Blazor/Traces/ScatterLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ScatterLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ScatterLib/HoverLabel.cs b/Plotly.Blazor/Traces/ScatterLib/HoverLabel.cs index 3e214761..599379ae 100644 --- a/Plotly.Blazor/Traces/ScatterLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ScatterLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ScatterLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ScatterLib/HoverLabelLib/AlignEnum.cs index a2a2d0f7..91864b46 100644 --- a/Plotly.Blazor/Traces/ScatterLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ScatterLib/HoverLabelLib/Font.cs index 45e29bb6..a3506684 100644 --- a/Plotly.Blazor/Traces/ScatterLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ScatterLib/HoverOnFlag.cs b/Plotly.Blazor/Traces/ScatterLib/HoverOnFlag.cs index 2c0d13bd..a137b15f 100644 --- a/Plotly.Blazor/Traces/ScatterLib/HoverOnFlag.cs +++ b/Plotly.Blazor/Traces/ScatterLib/HoverOnFlag.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// and there are no markers or text, then the default is <c>fills</c>, otherwise /// it is <c>points</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverOnFlag diff --git a/Plotly.Blazor/Traces/ScatterLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ScatterLib/Legendgrouptitle.cs index b6ff2395..2f364c7a 100644 --- a/Plotly.Blazor/Traces/ScatterLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ScatterLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ScatterLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterLib/LegendgrouptitleLib/Font.cs index 2053a53c..bada1d4b 100644 --- a/Plotly.Blazor/Traces/ScatterLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterLib/Line.cs b/Plotly.Blazor/Traces/ScatterLib/Line.cs index ec08c810..9eea66f7 100644 --- a/Plotly.Blazor/Traces/ScatterLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterLib/LineLib/ShapeEnum.cs b/Plotly.Blazor/Traces/ScatterLib/LineLib/ShapeEnum.cs index 3547f7da..11e42fd4 100644 --- a/Plotly.Blazor/Traces/ScatterLib/LineLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/LineLib/ShapeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.LineLib /// spline interpolation. The other available values correspond to step-wise /// line shapes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/Marker.cs b/Plotly.Blazor/Traces/ScatterLib/Marker.cs index b757795b..a312cf54 100644 --- a/Plotly.Blazor/Traces/ScatterLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/AngleRefEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/AngleRefEnum.cs index 6acbc47c..78ad374f 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/AngleRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/AngleRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib /// along the line from the previous point to this one. With <c>up</c>, angle /// 0 points toward the top of the screen. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AngleRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBar.cs index ec992815..6ab76b2e 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index a6927e56..01a1bd51 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/LenModeEnum.cs index 3f4ea64f..f7e54001 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/OrientationEnum.cs index 13661c54..a1b22df9 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 6661bc86..b50d6162 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index a2eedd4f..04fe6f85 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index 25c189c9..e4af60fa 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 65acb1c8..2fc4bc85 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickFont.cs index d25a88b8..d00aec8c 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 4f71550d..a06c70b7 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index e6748981..fad6f798 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index f0145da1..78a726cb 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickModeEnum.cs index bb7656c5..ee030f3a 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TicksEnum.cs index 944af600..47f61866 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/Title.cs index 741fee5e..f1267d26 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 59d49672..183220c5 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 38829b00..ab9578e5 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 82694507..52084781 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/XRefEnum.cs index 043d70e0..88271c2e 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index 6a47cbea..ad3363ea 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/YRefEnum.cs index d7852679..e1de6af5 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/Gradient.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/Gradient.cs index 3f1c485a..36244f4b 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/Gradient.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/Gradient.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib /// <summary> /// The Gradient class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Gradient : IEquatable<Gradient> diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/GradientLib/TypeEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/GradientLib/TypeEnum.cs index d4c27ecd..cb31c441 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/GradientLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/GradientLib/TypeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib.GradientLib /// <summary> /// Sets the type of gradient used to fill the markers /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/Line.cs index 9e10337b..1a433d87 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/SizeModeEnum.cs index 9cbff62f..c9a7eb9c 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/SymbolEnum.cs index ed492bd8..c6d360d1 100644 --- a/Plotly.Blazor/Traces/ScatterLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/ModeFlag.cs b/Plotly.Blazor/Traces/ScatterLib/ModeFlag.cs index fffc852c..e9aed972 100644 --- a/Plotly.Blazor/Traces/ScatterLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/ScatterLib/ModeFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// 20 points and the trace is not stacked then the default is <c>lines+markers</c>. /// Otherwise, <c>lines</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/ScatterLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ScatterLib/OrientationEnum.cs index 1385f9b6..cac47561 100644 --- a/Plotly.Blazor/Traces/ScatterLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/OrientationEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// With <c>v</c> (<c>h</c>), the y (x) values of subsequent traces are added. /// Also affects the default value of <c>fill</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/Selected.cs b/Plotly.Blazor/Traces/ScatterLib/Selected.cs index d72ee487..43b46c07 100644 --- a/Plotly.Blazor/Traces/ScatterLib/Selected.cs +++ b/Plotly.Blazor/Traces/ScatterLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ScatterLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterLib/SelectedLib/Marker.cs index a93ce112..799675c8 100644 --- a/Plotly.Blazor/Traces/ScatterLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterLib/SelectedLib/TextFont.cs index 6e9a9ae1..16898c4a 100644 --- a/Plotly.Blazor/Traces/ScatterLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterLib/StackGapsEnum.cs b/Plotly.Blazor/Traces/ScatterLib/StackGapsEnum.cs index 744ba3bf..19602a6c 100644 --- a/Plotly.Blazor/Traces/ScatterLib/StackGapsEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/StackGapsEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <c>interpolate</c> we linearly interpolate between existing values, and /// extrapolate a constant beyond the existing values. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum StackGapsEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/Stream.cs b/Plotly.Blazor/Traces/ScatterLib/Stream.cs index 2cd5b092..27b2e31c 100644 --- a/Plotly.Blazor/Traces/ScatterLib/Stream.cs +++ b/Plotly.Blazor/Traces/ScatterLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ScatterLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterLib/TextFont.cs index 98bbecc7..5f48777b 100644 --- a/Plotly.Blazor/Traces/ScatterLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/ScatterLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/ScatterLib/TextPositionEnum.cs index fbcd61d1..da02106b 100644 --- a/Plotly.Blazor/Traces/ScatterLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/Unselected.cs b/Plotly.Blazor/Traces/ScatterLib/Unselected.cs index 3b8758bd..0682fa06 100644 --- a/Plotly.Blazor/Traces/ScatterLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ScatterLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ScatterLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterLib/UnselectedLib/Marker.cs index 98b7be40..305b86d4 100644 --- a/Plotly.Blazor/Traces/ScatterLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterLib/UnselectedLib/TextFont.cs index 6a7e1bf6..bd1d4117 100644 --- a/Plotly.Blazor/Traces/ScatterLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ScatterLib/VisibleEnum.cs index fa1d8cd8..d345c27a 100644 --- a/Plotly.Blazor/Traces/ScatterLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/ScatterLib/XCalendarEnum.cs index 1ae90ccc..d83fc3fd 100644 --- a/Plotly.Blazor/Traces/ScatterLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/XPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/ScatterLib/XPeriodAlignmentEnum.cs index 6a11ab63..0ff75b0d 100644 --- a/Plotly.Blazor/Traces/ScatterLib/XPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/XPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the x axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/ScatterLib/YCalendarEnum.cs index 9dabe983..55b5e725 100644 --- a/Plotly.Blazor/Traces/ScatterLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/ScatterLib/YPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/ScatterLib/YPeriodAlignmentEnum.cs index 5e1a2387..474ddb9d 100644 --- a/Plotly.Blazor/Traces/ScatterLib/YPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterLib/YPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the y axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBox.cs b/Plotly.Blazor/Traces/ScatterMapBox.cs index 4ef263e7..20cccd88 100644 --- a/Plotly.Blazor/Traces/ScatterMapBox.cs +++ b/Plotly.Blazor/Traces/ScatterMapBox.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ScatterMapBox class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ScatterMapBox : ITrace, IEquatable<ScatterMapBox> diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/Cluster.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/Cluster.cs index e93478f0..99404c41 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/Cluster.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/Cluster.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// <summary> /// The Cluster class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Cluster : IEquatable<Cluster> diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/FillEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/FillEnum.cs index df4fb9f3..22d55b15 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/FillEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/FillEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// <c>none</c>. <c>toself</c> connects the endpoints of the trace (or each /// segment of the trace if it has gaps) into a closed shape. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverInfoFlag.cs index e290984c..59c3d793 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabel.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabel.cs index 4ef26d3e..278dc8fd 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabelLib/AlignEnum.cs index bb4dbc8b..fa52ea66 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabelLib/Font.cs index 5bb3d3f6..d654bc5e 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/Legendgrouptitle.cs index 54baf89c..aab59468 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/LegendgrouptitleLib/Font.cs index bb83298a..6ae9895a 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/Line.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/Line.cs index a5327625..f36c8018 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/Marker.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/Marker.cs index 028175d8..981c7843 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBar.cs index 4892cbe2..25621617 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index c7224800..03609b7c 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/LenModeEnum.cs index ba171e6f..eec1ca51 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/OrientationEnum.cs index 66e94ef6..46a8c542 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 56adb1f8..a5ff3af8 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index b550e897..cf7ad42b 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index 54655354..eb6f7a80 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 5306dd84..f8c817a1 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickFont.cs index b6e5f7dc..44462e94 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 8f20e178..b37e464f 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 0f98ac84..5f83ef0a 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 49e23654..e8e6154e 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 32f2863d..0abb2596 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TicksEnum.cs index 1445b487..cfb8df1b 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/Title.cs index d1a136b1..e6e54c55 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 21ce2c8e..664d386f 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 270775ca..53e4c43a 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 24d27a06..febd46b9 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/XRefEnum.cs index c460d24b..e5dccca2 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index 45c1bf05..e71dab2f 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/YRefEnum.cs index 0ffea478..f5553a42 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/SizeModeEnum.cs index f1691eba..1cbadf5c 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/ModeFlag.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/ModeFlag.cs index 7b7939ac..ab14e108 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/ModeFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// includes <c>text</c> then the <c>text</c> elements appear at the coordinates. /// Otherwise, the <c>text</c> elements appear on hover. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/Selected.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/Selected.cs index 82c10486..5bb0df36 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/Selected.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/SelectedLib/Marker.cs index a5cdf203..a109af71 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/Stream.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/Stream.cs index 1c7000fa..b426019a 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/Stream.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/TextFont.cs index dc2cda26..5d37be6d 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/TextPositionEnum.cs index 90e48cb6..f314dd86 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/Unselected.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/Unselected.cs index 700ab7d9..7ac6cb7c 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/UnselectedLib/Marker.cs index ae151a52..b4eb3892 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterMapBoxLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ScatterMapBoxLib/VisibleEnum.cs index 54769bb6..c9bcb17e 100644 --- a/Plotly.Blazor/Traces/ScatterMapBoxLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ScatterMapBoxLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterMapBoxLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolar.cs b/Plotly.Blazor/Traces/ScatterPolar.cs index 1acbcc84..57cdeb1a 100644 --- a/Plotly.Blazor/Traces/ScatterPolar.cs +++ b/Plotly.Blazor/Traces/ScatterPolar.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ScatterPolar class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ScatterPolar : ITrace, IEquatable<ScatterPolar> diff --git a/Plotly.Blazor/Traces/ScatterPolarGl.cs b/Plotly.Blazor/Traces/ScatterPolarGl.cs index e0726db5..6e3491c5 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGl.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGl.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ScatterPolarGl class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ScatterPolarGl : ITrace, IEquatable<ScatterPolarGl> diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/FillEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/FillEnum.cs index 6470bfeb..ceb6cb1d 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/FillEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/FillEnum.cs @@ -27,7 +27,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// are not already consecutive, the later ones will be pushed down in the drawing /// order. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverInfoFlag.cs index 2fdee41a..61731f67 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabel.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabel.cs index 1e182c8a..adb1df81 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabelLib/AlignEnum.cs index 01e77d77..4eb924e9 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabelLib/Font.cs index bf0716d4..cc91d4a2 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/Legendgrouptitle.cs index 4217428e..b364356a 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/LegendgrouptitleLib/Font.cs index ebb2aeb9..b48d4a99 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/Line.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/Line.cs index 38f3aa91..2bbc6fe2 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/LineLib/DashEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/LineLib/DashEnum.cs index 28d47450..38b21e61 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/LineLib/DashEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/LineLib/DashEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.LineLib /// <summary> /// Sets the style of the lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DashEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/LineLib/ShapeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/LineLib/ShapeEnum.cs index 7c4d2447..3ad98af8 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/LineLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/LineLib/ShapeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.LineLib /// <summary> /// Determines the line shape. The values correspond to step-wise line shapes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/Marker.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/Marker.cs index 3250e2ae..d82a8162 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBar.cs index a51fb85f..f987e47e 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 16944135..15b289e9 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/LenModeEnum.cs index a5bb3de4..774878a0 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/OrientationEnum.cs index 0dd9fa23..356c7233 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 35c8f0bd..654dc2ee 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 8d32f36d..60c44713 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index aac77746..9319668e 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index c8942eee..ad70be5d 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickFont.cs index e68e08db..302cc40d 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 2ada31a2..cff9d605 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 7c8e2d41..0de72eae 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 2fa5968d..c28d518b 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 95f78cc2..38952806 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TicksEnum.cs index b305e0e8..836d90c1 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/Title.cs index 2cd60d6b..d18b278e 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 8bd940a2..7e4753a7 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index a5b32c73..66e83add 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 9e9f9ccd..7f047b43 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/XRefEnum.cs index 77ddef80..f7cf34c4 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index 9a2c21f2..ad2df3f6 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/YRefEnum.cs index a9b8c642..5f6a05dd 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/Line.cs index 76e4c97a..5785536e 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/SizeModeEnum.cs index 336ead23..1dcc8e6e 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/SymbolEnum.cs index 8b540f56..47fab6f9 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/ModeFlag.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/ModeFlag.cs index 82b5a27b..b50b9b62 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/ModeFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// 20 points and the trace is not stacked then the default is <c>lines+markers</c>. /// Otherwise, <c>lines</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/Selected.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/Selected.cs index 078a4ff2..9da78780 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/Selected.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/SelectedLib/Marker.cs index 5ba4f019..8b58f9e4 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/SelectedLib/TextFont.cs index 6fa3c5d3..ee8a875b 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/Stream.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/Stream.cs index 2c14b7ef..c82392c9 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/Stream.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/TextFont.cs index 1a05fd7d..2c739527 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/TextPositionEnum.cs index 195885c7..c631741b 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/ThetaUnitEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/ThetaUnitEnum.cs index c69a0f98..5b4d4a9f 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/ThetaUnitEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/ThetaUnitEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// Sets the unit of input <c>theta</c> values. Has an effect only when on <c>linear</c> /// angular axes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThetaUnitEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/Unselected.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/Unselected.cs index 851ef317..0fa511f5 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/UnselectedLib/Marker.cs index 8fc91190..9dcbb3ad 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/UnselectedLib/TextFont.cs index 712f1ed3..ed9a62cb 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterPolarGlLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ScatterPolarGlLib/VisibleEnum.cs index 6ab30ea7..d89f51ef 100644 --- a/Plotly.Blazor/Traces/ScatterPolarGlLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarGlLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarGlLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/FillEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/FillEnum.cs index c41556a1..c3e36215 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/FillEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/FillEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// contour lines), and behaves like <c>toself</c> if there is no trace before /// it. <c>tonext</c> should not be used if one trace does not enclose the other. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ScatterPolarLib/HoverInfoFlag.cs index 5e8f1c80..fd24248b 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabel.cs b/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabel.cs index 00ce3e98..bbb58dcf 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabelLib/AlignEnum.cs index 85b5f6c6..cada5ce1 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabelLib/Font.cs index a9a89b0a..7f770131 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/HoverOnFlag.cs b/Plotly.Blazor/Traces/ScatterPolarLib/HoverOnFlag.cs index 17e01913..b71667a0 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/HoverOnFlag.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/HoverOnFlag.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// and there are no markers or text, then the default is <c>fills</c>, otherwise /// it is <c>points</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverOnFlag diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ScatterPolarLib/Legendgrouptitle.cs index f0a25452..13da4cb0 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterPolarLib/LegendgrouptitleLib/Font.cs index 931e4140..eb33c015 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/Line.cs b/Plotly.Blazor/Traces/ScatterPolarLib/Line.cs index 5d19c02f..7c7e6ccb 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/LineLib/ShapeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/LineLib/ShapeEnum.cs index da45e2ac..cd5a84ae 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/LineLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/LineLib/ShapeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.LineLib /// spline interpolation. The other available values correspond to step-wise /// line shapes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/Marker.cs b/Plotly.Blazor/Traces/ScatterPolarLib/Marker.cs index 958e3bc3..60aa084e 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/AngleRefEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/AngleRefEnum.cs index 652a42e4..162fdea9 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/AngleRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/AngleRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib /// along the line from the previous point to this one. With <c>up</c>, angle /// 0 points toward the top of the screen. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AngleRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBar.cs index 675d64d3..b27cf26e 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index cd95da4e..9e159fe5 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/LenModeEnum.cs index 2cfecade..d95fe643 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/OrientationEnum.cs index 70ebc788..6dea7c15 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 0d11e4d2..0b4675ae 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 138b9e1d..4da4ee35 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index 15ff3b72..cdb06b34 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 5e6fb6ce..32a750f9 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickFont.cs index cf0cc37f..6b79bc15 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 0dacc38e..a775cb69 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index b99ba798..f291a24d 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 52a8db1a..1e551760 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 272be5e4..5e7b2bbd 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TicksEnum.cs index cb475ed4..369fd0fd 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/Title.cs index 7aba3726..3aedfaf2 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 7bdeb497..0e8eed14 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 1a4086ce..aa6d7591 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 2427ab28..452bc494 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/XRefEnum.cs index 8938e0ae..e782de57 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index d3d62a5f..0c89c644 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/YRefEnum.cs index 86922683..5aacab4e 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/Gradient.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/Gradient.cs index ed2347b3..27746724 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/Gradient.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/Gradient.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib /// <summary> /// The Gradient class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Gradient : IEquatable<Gradient> diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/GradientLib/TypeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/GradientLib/TypeEnum.cs index 0743ad4d..e9b12f8c 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/GradientLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/GradientLib/TypeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib.GradientLib /// <summary> /// Sets the type of gradient used to fill the markers /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/Line.cs index 3db8c5b5..40d505ba 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/SizeModeEnum.cs index 2ea9eb32..62fdefea 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/SymbolEnum.cs index 84a3425c..7d7135f1 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/ModeFlag.cs b/Plotly.Blazor/Traces/ScatterPolarLib/ModeFlag.cs index 675dff07..187580df 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/ModeFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// 20 points and the trace is not stacked then the default is <c>lines+markers</c>. /// Otherwise, <c>lines</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/Selected.cs b/Plotly.Blazor/Traces/ScatterPolarLib/Selected.cs index 2f02026b..c800d76a 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/Selected.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterPolarLib/SelectedLib/Marker.cs index 46b317a2..e2d6c03f 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterPolarLib/SelectedLib/TextFont.cs index b2047bab..1063dbbe 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/Stream.cs b/Plotly.Blazor/Traces/ScatterPolarLib/Stream.cs index 5f81d967..a566f971 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/Stream.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterPolarLib/TextFont.cs index 3724f8e1..78794687 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/TextPositionEnum.cs index da9cfbca..39a4f071 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/ThetaUnitEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/ThetaUnitEnum.cs index 0f9c2742..7adbbd0b 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/ThetaUnitEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/ThetaUnitEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// Sets the unit of input <c>theta</c> values. Has an effect only when on <c>linear</c> /// angular axes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThetaUnitEnum { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/Unselected.cs b/Plotly.Blazor/Traces/ScatterPolarLib/Unselected.cs index f1c4ad9d..5de69304 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterPolarLib/UnselectedLib/Marker.cs index 4ccd79d5..8e02812a 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterPolarLib/UnselectedLib/TextFont.cs index 14078122..1f67fb42 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterPolarLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ScatterPolarLib/VisibleEnum.cs index b193e50b..9fcdf802 100644 --- a/Plotly.Blazor/Traces/ScatterPolarLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ScatterPolarLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterPolarLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmith.cs b/Plotly.Blazor/Traces/ScatterSmith.cs index e6a6e5f3..a181c66b 100644 --- a/Plotly.Blazor/Traces/ScatterSmith.cs +++ b/Plotly.Blazor/Traces/ScatterSmith.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ScatterSmith class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ScatterSmith : ITrace, IEquatable<ScatterSmith> diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/FillEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/FillEnum.cs index 73a511be..d1f304e4 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/FillEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/FillEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// contour lines), and behaves like <c>toself</c> if there is no trace before /// it. <c>tonext</c> should not be used if one trace does not enclose the other. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ScatterSmithLib/HoverInfoFlag.cs index 3062f6b3..ffd52f37 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabel.cs b/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabel.cs index 642dcade..b2b76667 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabelLib/AlignEnum.cs index 5b6da147..02c8ffee 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabelLib/Font.cs index ee704148..0fb9b437 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/HoverOnFlag.cs b/Plotly.Blazor/Traces/ScatterSmithLib/HoverOnFlag.cs index a45e6da1..c3199043 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/HoverOnFlag.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/HoverOnFlag.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// and there are no markers or text, then the default is <c>fills</c>, otherwise /// it is <c>points</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverOnFlag diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/LegendGroupTitle.cs b/Plotly.Blazor/Traces/ScatterSmithLib/LegendGroupTitle.cs index f188f04c..371b6c9e 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/LegendGroupTitle.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/LegendGroupTitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/LegendGroupTitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterSmithLib/LegendGroupTitleLib/Font.cs index 5af97eb7..7ce0c628 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/LegendGroupTitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/LegendGroupTitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/Line.cs b/Plotly.Blazor/Traces/ScatterSmithLib/Line.cs index d967ea27..c2da7ca0 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/LineLib/ShapeEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/LineLib/ShapeEnum.cs index 766b1460..72ec7177 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/LineLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/LineLib/ShapeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.LineLib /// spline interpolation. The other available values correspond to step-wise /// line shapes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/Marker.cs b/Plotly.Blazor/Traces/ScatterSmithLib/Marker.cs index 38c1e837..7155b5a9 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/AngleRefEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/AngleRefEnum.cs index eb421cfb..16345f47 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/AngleRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/AngleRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib /// along the line from the previous point to this one. With <c>up</c>, angle /// 0 points toward the top of the screen. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AngleRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBar.cs index f84b2be6..c2bbce80 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 5b1f4309..e7da3280 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/LenModeEnum.cs index fc56ff3c..fac31aad 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/OrientationEnum.cs index fffbf092..53de8a12 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 29360289..c90a069b 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 7d68e995..302da713 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index 79102adb..898bfac1 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 896052c2..efaffe26 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickFont.cs index 06a87ae0..3fff1825 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 6226f1bf..0955c4df 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 1ee07b6a..7ce6c240 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 37f6c46a..14ff1364 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 72aee956..8074530a 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TicksEnum.cs index 3c9a9276..c67a5ae7 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/Title.cs index c903b604..86e31126 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index ea804613..0d74d7a5 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 17be4248..29a42b49 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index b9bdb84d..08ce650a 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/XRefEnum.cs index 0de83468..2d5ba571 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index 4deb94eb..66b5117e 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/YRefEnum.cs index f8deb517..a252b2bf 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/Gradient.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/Gradient.cs index 559c9d1d..ab291afb 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/Gradient.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/Gradient.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib /// <summary> /// The Gradient class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Gradient : IEquatable<Gradient> diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/GradientLib/TypeEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/GradientLib/TypeEnum.cs index 40f3a358..e59ee44c 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/GradientLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/GradientLib/TypeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib.GradientLib /// <summary> /// Sets the type of gradient used to fill the markers /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/Line.cs index 9ca74504..f47a01c0 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/SizeModeEnum.cs index f952e092..487523e9 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/SymbolEnum.cs index 01d538d2..8f7f5aa2 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/ModeFlag.cs b/Plotly.Blazor/Traces/ScatterSmithLib/ModeFlag.cs index d2637261..fa56aebb 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/ModeFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// 20 points and the trace is not stacked then the default is <c>lines+markers</c>. /// Otherwise, <c>lines</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/Selected.cs b/Plotly.Blazor/Traces/ScatterSmithLib/Selected.cs index 621c8882..4cbbc71c 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/Selected.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterSmithLib/SelectedLib/Marker.cs index 161ccb70..7e797fd9 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterSmithLib/SelectedLib/TextFont.cs index ff723daa..ff40c1a2 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/Stream.cs b/Plotly.Blazor/Traces/ScatterSmithLib/Stream.cs index 1aa37aea..60d99848 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/Stream.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterSmithLib/TextFont.cs index 5d2682c5..c3bd30b7 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/TextPositionEnum.cs index 47b0c999..20c7459e 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/Unselected.cs b/Plotly.Blazor/Traces/ScatterSmithLib/Unselected.cs index 3d2261b0..9f2c8089 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterSmithLib/UnselectedLib/Marker.cs index 95813744..c1fd48c2 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterSmithLib/UnselectedLib/TextFont.cs index 994882f8..5f56dec0 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterSmithLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ScatterSmithLib/VisibleEnum.cs index e17aaf14..8224062f 100644 --- a/Plotly.Blazor/Traces/ScatterSmithLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ScatterSmithLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterSmithLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernary.cs b/Plotly.Blazor/Traces/ScatterTernary.cs index e13f753a..0f82479c 100644 --- a/Plotly.Blazor/Traces/ScatterTernary.cs +++ b/Plotly.Blazor/Traces/ScatterTernary.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The ScatterTernary class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class ScatterTernary : ITrace, IEquatable<ScatterTernary> diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/FillEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/FillEnum.cs index 3dddf6b7..38ef9aca 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/FillEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/FillEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// contour lines), and behaves like <c>toself</c> if there is no trace before /// it. <c>tonext</c> should not be used if one trace does not enclose the other. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/HoverInfoFlag.cs index fbc905a9..5246289a 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabel.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabel.cs index f1348803..3414b304 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabelLib/AlignEnum.cs index f72cf2a6..60e5c55a 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabelLib/Font.cs index f12cca95..07532f29 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/HoverOnFlag.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/HoverOnFlag.cs index f36bc1ed..65807731 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/HoverOnFlag.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/HoverOnFlag.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// and there are no markers or text, then the default is <c>fills</c>, otherwise /// it is <c>points</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverOnFlag diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/Legendgrouptitle.cs index 109c154d..d75ac7aa 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/LegendgrouptitleLib/Font.cs index cf15296c..b6c32c49 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/Line.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/Line.cs index 3a11e5e2..78c708c7 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/LineLib/ShapeEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/LineLib/ShapeEnum.cs index a690e47f..992cfc16 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/LineLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/LineLib/ShapeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.LineLib /// spline interpolation. The other available values correspond to step-wise /// line shapes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/Marker.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/Marker.cs index 66160291..81a62372 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/AngleRefEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/AngleRefEnum.cs index c1ccb5eb..fadf4edf 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/AngleRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/AngleRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib /// along the line from the previous point to this one. With <c>up</c>, angle /// 0 points toward the top of the screen. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AngleRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBar.cs index 135e6eec..0221fe98 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index 4bf49288..504d591f 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/LenModeEnum.cs index b7961dc3..9ce38b59 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/OrientationEnum.cs index 9e1ffbe7..0e647c7d 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 218254c2..d08d18bc 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 442e996e..f43ce427 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index 8b34dee2..a9b3e915 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 0b137104..dfe15542 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickFont.cs index 60d8ce25..946158dd 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 8122ba77..eec03071 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 72a705d9..c766b77f 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 7f77ee44..54e6d8b6 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 005eb370..194233c6 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TicksEnum.cs index 11db138f..9d25ea43 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/Title.cs index fdc07a14..1558058f 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index 8b33c06c..35323369 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 31a168bb..7462a256 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index 7f20952e..dc83327a 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/XRefEnum.cs index f242d11b..3fa2e0c7 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index fb7ee156..b94cbaa6 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/YRefEnum.cs index ae57ed23..3d29d7b1 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/Gradient.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/Gradient.cs index 9f12cccd..7b436231 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/Gradient.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/Gradient.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib /// <summary> /// The Gradient class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Gradient : IEquatable<Gradient> diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/GradientLib/TypeEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/GradientLib/TypeEnum.cs index 6fa522ab..4fffdda5 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/GradientLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/GradientLib/TypeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib.GradientLib /// <summary> /// Sets the type of gradient used to fill the markers /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/Line.cs index 42089e37..03e65e20 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/SizeModeEnum.cs index 31661ac0..88701276 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/SymbolEnum.cs index 5782a266..7eac1bdd 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/ModeFlag.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/ModeFlag.cs index 70c2f461..d0175bc2 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/ModeFlag.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/ModeFlag.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// 20 points and the trace is not stacked then the default is <c>lines+markers</c>. /// Otherwise, <c>lines</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum ModeFlag diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/Selected.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/Selected.cs index e3212120..febe840a 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/Selected.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/SelectedLib/Marker.cs index 9f4ac257..dd115c46 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/SelectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/SelectedLib/TextFont.cs index 9754b248..cf3e18c7 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/SelectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/SelectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.SelectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/Stream.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/Stream.cs index 485aa9a6..51448093 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/Stream.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/TextFont.cs index c7294324..68feae5e 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/TextPositionEnum.cs index c2bd261e..2ed17c4d 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/TextPositionEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// Sets the positions of the <c>text</c> elements with respects to the (x,y) /// coordinates. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/Unselected.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/Unselected.cs index 7a7a5d13..eb807723 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/UnselectedLib/Marker.cs index bac1b133..506f9a57 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/UnselectedLib/TextFont.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/UnselectedLib/TextFont.cs index 3d5b655a..e8b50a2b 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/UnselectedLib/TextFont.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/UnselectedLib/TextFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib.UnselectedLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TextFont : IEquatable<TextFont> { diff --git a/Plotly.Blazor/Traces/ScatterTernaryLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ScatterTernaryLib/VisibleEnum.cs index 056f243c..7ee91796 100644 --- a/Plotly.Blazor/Traces/ScatterTernaryLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ScatterTernaryLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ScatterTernaryLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Splom.cs b/Plotly.Blazor/Traces/Splom.cs index d939ab32..25daae5a 100644 --- a/Plotly.Blazor/Traces/Splom.cs +++ b/Plotly.Blazor/Traces/Splom.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Splom class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Splom : ITrace, IEquatable<Splom> diff --git a/Plotly.Blazor/Traces/SplomLib/Diagonal.cs b/Plotly.Blazor/Traces/SplomLib/Diagonal.cs index 538b9770..2d275135 100644 --- a/Plotly.Blazor/Traces/SplomLib/Diagonal.cs +++ b/Plotly.Blazor/Traces/SplomLib/Diagonal.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib /// <summary> /// The Diagonal class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Diagonal : IEquatable<Diagonal> { diff --git a/Plotly.Blazor/Traces/SplomLib/Dimension.cs b/Plotly.Blazor/Traces/SplomLib/Dimension.cs index 44ec15f0..be9feed9 100644 --- a/Plotly.Blazor/Traces/SplomLib/Dimension.cs +++ b/Plotly.Blazor/Traces/SplomLib/Dimension.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SplomLib /// <summary> /// The Dimension class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Dimension : IEquatable<Dimension> { diff --git a/Plotly.Blazor/Traces/SplomLib/DimensionLib/Axis.cs b/Plotly.Blazor/Traces/SplomLib/DimensionLib/Axis.cs index 70cbccd3..2be02d7f 100644 --- a/Plotly.Blazor/Traces/SplomLib/DimensionLib/Axis.cs +++ b/Plotly.Blazor/Traces/SplomLib/DimensionLib/Axis.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.DimensionLib /// <summary> /// The Axis class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Axis : IEquatable<Axis> { diff --git a/Plotly.Blazor/Traces/SplomLib/DimensionLib/AxisLib/TypeEnum.cs b/Plotly.Blazor/Traces/SplomLib/DimensionLib/AxisLib/TypeEnum.cs index 2cbf256f..6810b87f 100644 --- a/Plotly.Blazor/Traces/SplomLib/DimensionLib/AxisLib/TypeEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/DimensionLib/AxisLib/TypeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.DimensionLib.AxisLib /// that the axis <c>type</c> values set in layout take precedence over this /// attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TypeEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/SplomLib/HoverInfoFlag.cs index a4a5b257..7b86eaa1 100644 --- a/Plotly.Blazor/Traces/SplomLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/SplomLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SplomLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/SplomLib/HoverLabel.cs b/Plotly.Blazor/Traces/SplomLib/HoverLabel.cs index 15097a72..65d94a26 100644 --- a/Plotly.Blazor/Traces/SplomLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/SplomLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SplomLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/SplomLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/SplomLib/HoverLabelLib/AlignEnum.cs index 253717ae..7aba5215 100644 --- a/Plotly.Blazor/Traces/SplomLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.SplomLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/SplomLib/HoverLabelLib/Font.cs index 16d6c7ca..b9e8ef35 100644 --- a/Plotly.Blazor/Traces/SplomLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/SplomLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SplomLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/SplomLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/SplomLib/Legendgrouptitle.cs index d7689b11..127b2ada 100644 --- a/Plotly.Blazor/Traces/SplomLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/SplomLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/SplomLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/SplomLib/LegendgrouptitleLib/Font.cs index 429a5603..1ad0f4e0 100644 --- a/Plotly.Blazor/Traces/SplomLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/SplomLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/SplomLib/Marker.cs b/Plotly.Blazor/Traces/SplomLib/Marker.cs index e1fd1e17..27a956a0 100644 --- a/Plotly.Blazor/Traces/SplomLib/Marker.cs +++ b/Plotly.Blazor/Traces/SplomLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SplomLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Marker : IEquatable<Marker> diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBar.cs index 1d75c78b..fe583c7d 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index e5f437d8..dc9a1f4e 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/LenModeEnum.cs index 9402ff20..f904e386 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/OrientationEnum.cs index d561ee28..70c43c5f 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index f81eed57..586675b2 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index ad06f60d..9bb739ef 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index 6ec09bdf..4b2eb52a 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index fca9b619..07c37450 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickFont.cs index dd08d31a..032d8371 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 65a60ff8..a46419e8 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 26ff7e8a..f5cca4df 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 5a6c08f6..59fc783d 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickModeEnum.cs index 2c078497..45c460cf 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TicksEnum.cs index 8072e6ff..ef931b22 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/Title.cs index 9d948b70..869f9194 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index d98374c6..7f626f04 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 37fc09a1..6eff1503 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index bc5eda94..7debb311 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/XRefEnum.cs index 5b76020a..eb99b3df 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index 4fad2284..e8b6a881 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/YRefEnum.cs index 24d2f61e..74a5bf95 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/Line.cs index 8a46f59f..55187bb8 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/SizeModeEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/SizeModeEnum.cs index a50cbdf5..7fea7f7a 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/SizeModeEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/SizeModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib /// Has an effect only if <c>marker.size</c> is set to a numerical array. Sets /// the rule for which the data in <c>size</c> is converted to pixels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SizeModeEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/SplomLib/MarkerLib/SymbolEnum.cs index aa89d88c..f032a51c 100644 --- a/Plotly.Blazor/Traces/SplomLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SplomLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/SplomLib/Selected.cs b/Plotly.Blazor/Traces/SplomLib/Selected.cs index 7c1e22c1..ca51e62a 100644 --- a/Plotly.Blazor/Traces/SplomLib/Selected.cs +++ b/Plotly.Blazor/Traces/SplomLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/SplomLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/SplomLib/SelectedLib/Marker.cs index 893372d2..5d14150e 100644 --- a/Plotly.Blazor/Traces/SplomLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/SplomLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/SplomLib/Stream.cs b/Plotly.Blazor/Traces/SplomLib/Stream.cs index 96f80283..d9c385fb 100644 --- a/Plotly.Blazor/Traces/SplomLib/Stream.cs +++ b/Plotly.Blazor/Traces/SplomLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/SplomLib/Unselected.cs b/Plotly.Blazor/Traces/SplomLib/Unselected.cs index d95c6ed4..1d604c7a 100644 --- a/Plotly.Blazor/Traces/SplomLib/Unselected.cs +++ b/Plotly.Blazor/Traces/SplomLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/SplomLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/SplomLib/UnselectedLib/Marker.cs index ccd99f22..beed9797 100644 --- a/Plotly.Blazor/Traces/SplomLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/SplomLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/SplomLib/VisibleEnum.cs b/Plotly.Blazor/Traces/SplomLib/VisibleEnum.cs index 755ce874..6e3c45a5 100644 --- a/Plotly.Blazor/Traces/SplomLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/SplomLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SplomLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/StreamTube.cs b/Plotly.Blazor/Traces/StreamTube.cs index 198abe0a..8264fcec 100644 --- a/Plotly.Blazor/Traces/StreamTube.cs +++ b/Plotly.Blazor/Traces/StreamTube.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The StreamTube class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class StreamTube : ITrace, IEquatable<StreamTube> diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBar.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBar.cs index 9c7b7339..1d049dd7 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ExponentFormatEnum.cs index 96024ae7..5d114c65 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/LenModeEnum.cs index 39d08a9f..c9d120f7 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/OrientationEnum.cs index e0a167fc..efd5f5e7 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowExponentEnum.cs index 632a59cd..5edae1bc 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowTickPrefixEnum.cs index 61f9a2b0..d986f485 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowTickSuffixEnum.cs index 0ebfd20a..9f32b3dc 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ThicknessModeEnum.cs index 1c6f75ec..93fb7fb8 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickFont.cs index 555b8b67..3b17c122 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickFormatStop.cs index 53b4764b..282b14bd 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickLabelOverflowEnum.cs index 9fa8080c..bbe1ce14 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickLabelPositionEnum.cs index a9981dfb..df9dbfbd 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickModeEnum.cs index b2f92dce..d1063573 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TicksEnum.cs index 07c6059c..0a7f1f0b 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/Title.cs index 57eaf6a5..9764bbb6 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TitleLib/Font.cs index 33e74877..dab2c4a4 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TitleLib/SideEnum.cs index 05c464ab..d53aec28 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/XAnchorEnum.cs index 75a20cdb..3b9445d6 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/XRefEnum.cs index f7fb6394..11402fd4 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/YAnchorEnum.cs index 880a631e..6a1ccbbb 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/YRefEnum.cs index 1f6fbb27..fde42477 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/StreamTubeLib/HoverInfoFlag.cs index 1c181252..1853c0eb 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/StreamTubeLib/HoverLabel.cs b/Plotly.Blazor/Traces/StreamTubeLib/HoverLabel.cs index 073baffd..0cdfcea3 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/StreamTubeLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/HoverLabelLib/AlignEnum.cs index d703f629..f733503b 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/StreamTubeLib/HoverLabelLib/Font.cs index acaf2e33..1be2822c 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/StreamTubeLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/StreamTubeLib/Legendgrouptitle.cs index 35c0b520..724c7dd3 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/StreamTubeLib/LegendgrouptitleLib/Font.cs index 236ac0cb..170f6c88 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/LightPosition.cs b/Plotly.Blazor/Traces/StreamTubeLib/LightPosition.cs index a7523f87..f3148405 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/LightPosition.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/LightPosition.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib /// <summary> /// The LightPosition class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LightPosition : IEquatable<LightPosition> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/Lighting.cs b/Plotly.Blazor/Traces/StreamTubeLib/Lighting.cs index d6c1297e..7c1a13cf 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/Lighting.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/Lighting.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib /// <summary> /// The Lighting class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Lighting : IEquatable<Lighting> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/Starts.cs b/Plotly.Blazor/Traces/StreamTubeLib/Starts.cs index 576e795a..7cee0fe8 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/Starts.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/Starts.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib /// <summary> /// The Starts class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Starts : IEquatable<Starts> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/Stream.cs b/Plotly.Blazor/Traces/StreamTubeLib/Stream.cs index f8560fa4..f35f5b62 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/Stream.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/StreamTubeLib/VisibleEnum.cs b/Plotly.Blazor/Traces/StreamTubeLib/VisibleEnum.cs index 25039cb8..0d591d41 100644 --- a/Plotly.Blazor/Traces/StreamTubeLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/StreamTubeLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.StreamTubeLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Sunburst.cs b/Plotly.Blazor/Traces/Sunburst.cs index 71526a4a..0d4392db 100644 --- a/Plotly.Blazor/Traces/Sunburst.cs +++ b/Plotly.Blazor/Traces/Sunburst.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Sunburst class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Sunburst : ITrace, IEquatable<Sunburst> diff --git a/Plotly.Blazor/Traces/SunburstLib/BranchValuesEnum.cs b/Plotly.Blazor/Traces/SunburstLib/BranchValuesEnum.cs index 799cb24c..c3e35a08 100644 --- a/Plotly.Blazor/Traces/SunburstLib/BranchValuesEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/BranchValuesEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// and the branches sectors are taken to be the extra part not part of the /// sum of the values at their leaves. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum BranchValuesEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/CountFlag.cs b/Plotly.Blazor/Traces/SunburstLib/CountFlag.cs index 3d368ab3..9b0d87f5 100644 --- a/Plotly.Blazor/Traces/SunburstLib/CountFlag.cs +++ b/Plotly.Blazor/Traces/SunburstLib/CountFlag.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// Determines default for <c>values</c> when it is not provided, by inferring /// a 1 for each of the <c>leaves</c> and/or <c>branches</c>, otherwise 0. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum CountFlag diff --git a/Plotly.Blazor/Traces/SunburstLib/Domain.cs b/Plotly.Blazor/Traces/SunburstLib/Domain.cs index f52a2c25..b3b1a6aa 100644 --- a/Plotly.Blazor/Traces/SunburstLib/Domain.cs +++ b/Plotly.Blazor/Traces/SunburstLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/Traces/SunburstLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/SunburstLib/HoverInfoFlag.cs index 88e68924..83aab2ae 100644 --- a/Plotly.Blazor/Traces/SunburstLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/SunburstLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/SunburstLib/HoverLabel.cs b/Plotly.Blazor/Traces/SunburstLib/HoverLabel.cs index 548fb922..fb2ac8ea 100644 --- a/Plotly.Blazor/Traces/SunburstLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/SunburstLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/SunburstLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/SunburstLib/HoverLabelLib/AlignEnum.cs index 0a234ee0..e35adbc6 100644 --- a/Plotly.Blazor/Traces/SunburstLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/SunburstLib/HoverLabelLib/Font.cs index f1db78c7..79f56db2 100644 --- a/Plotly.Blazor/Traces/SunburstLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/SunburstLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/SunburstLib/InsideTextFont.cs b/Plotly.Blazor/Traces/SunburstLib/InsideTextFont.cs index dbad7fcf..d5ca83cc 100644 --- a/Plotly.Blazor/Traces/SunburstLib/InsideTextFont.cs +++ b/Plotly.Blazor/Traces/SunburstLib/InsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// The InsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class InsideTextFont : IEquatable<InsideTextFont> diff --git a/Plotly.Blazor/Traces/SunburstLib/InsideTextOrientationEnum.cs b/Plotly.Blazor/Traces/SunburstLib/InsideTextOrientationEnum.cs index 7f107040..fd2fc639 100644 --- a/Plotly.Blazor/Traces/SunburstLib/InsideTextOrientationEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/InsideTextOrientationEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// of the sector. The <c>tangential</c> option orients text perpendicular to /// the radius of the sector. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum InsideTextOrientationEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/Leaf.cs b/Plotly.Blazor/Traces/SunburstLib/Leaf.cs index e60ced04..0452af8d 100644 --- a/Plotly.Blazor/Traces/SunburstLib/Leaf.cs +++ b/Plotly.Blazor/Traces/SunburstLib/Leaf.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// The Leaf class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Leaf : IEquatable<Leaf> { diff --git a/Plotly.Blazor/Traces/SunburstLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/SunburstLib/Legendgrouptitle.cs index c70efb0e..d0a6db4a 100644 --- a/Plotly.Blazor/Traces/SunburstLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/SunburstLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/SunburstLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/SunburstLib/LegendgrouptitleLib/Font.cs index da5ccd7e..1df21f17 100644 --- a/Plotly.Blazor/Traces/SunburstLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/SunburstLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/SunburstLib/Marker.cs b/Plotly.Blazor/Traces/SunburstLib/Marker.cs index f5aa8e43..c395801b 100644 --- a/Plotly.Blazor/Traces/SunburstLib/Marker.cs +++ b/Plotly.Blazor/Traces/SunburstLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBar.cs index 914762ad..926e93cd 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index c21ce039..01b45849 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/LenModeEnum.cs index 65cfd9ae..aff35d30 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/OrientationEnum.cs index 1134cf96..4381545d 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index 2963065f..d44b1ac7 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index 9318dea7..af55c6e8 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index ff984a52..492c9420 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index 4fdf876c..a063632c 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickFont.cs index 6b2b300b..e91d4c3c 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 2bee3710..70c17328 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 15055009..653e06a4 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index 588377f7..2746ef81 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickModeEnum.cs index b7f89f88..520e73a4 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TicksEnum.cs index 9ce6fa40..37a0ded3 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/Title.cs index 80bbad97..3fe86fa8 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index f6244048..88ad452a 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 1bde9e60..28b6c038 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index e596d9a2..45ca7361 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/XRefEnum.cs index 521effe9..0a574b4d 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index ebc131fb..81f75a78 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/YRefEnum.cs index 8dcf660d..25f011de 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/Line.cs index d4ab22d2..f83e4a5a 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/Pattern.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/Pattern.cs index 4f896428..89de8140 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/Pattern.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/Pattern.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib /// <summary> /// The Pattern class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Pattern : IEquatable<Pattern> diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/PatternLib/FillModeEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/PatternLib/FillModeEnum.cs index ac5fa078..bf455735 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/PatternLib/FillModeEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/PatternLib/FillModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.PatternLib /// Determines whether <c>marker.color</c> should be used as a default to <c>bgcolor</c> /// or a <c>fgcolor</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillModeEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/PatternLib/ShapeEnum.cs b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/PatternLib/ShapeEnum.cs index bbe49afd..5cf9712c 100644 --- a/Plotly.Blazor/Traces/SunburstLib/MarkerLib/PatternLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/MarkerLib/PatternLib/ShapeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.SunburstLib.MarkerLib.PatternLib /// Sets the shape of the pattern fill. By default, no pattern is used for filling /// the area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/SunburstLib/OutsideTextFont.cs b/Plotly.Blazor/Traces/SunburstLib/OutsideTextFont.cs index 7e0f928c..03d951ff 100644 --- a/Plotly.Blazor/Traces/SunburstLib/OutsideTextFont.cs +++ b/Plotly.Blazor/Traces/SunburstLib/OutsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// The OutsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class OutsideTextFont : IEquatable<OutsideTextFont> diff --git a/Plotly.Blazor/Traces/SunburstLib/Root.cs b/Plotly.Blazor/Traces/SunburstLib/Root.cs index d62a462f..b3f85919 100644 --- a/Plotly.Blazor/Traces/SunburstLib/Root.cs +++ b/Plotly.Blazor/Traces/SunburstLib/Root.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// The Root class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Root : IEquatable<Root> { diff --git a/Plotly.Blazor/Traces/SunburstLib/Stream.cs b/Plotly.Blazor/Traces/SunburstLib/Stream.cs index 13cc4964..a053fad7 100644 --- a/Plotly.Blazor/Traces/SunburstLib/Stream.cs +++ b/Plotly.Blazor/Traces/SunburstLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/SunburstLib/TextFont.cs b/Plotly.Blazor/Traces/SunburstLib/TextFont.cs index 104f6b4d..6fae9226 100644 --- a/Plotly.Blazor/Traces/SunburstLib/TextFont.cs +++ b/Plotly.Blazor/Traces/SunburstLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/SunburstLib/TextInfoFlag.cs b/Plotly.Blazor/Traces/SunburstLib/TextInfoFlag.cs index c14c59cf..482e3898 100644 --- a/Plotly.Blazor/Traces/SunburstLib/TextInfoFlag.cs +++ b/Plotly.Blazor/Traces/SunburstLib/TextInfoFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// <summary> /// Determines which trace information appear on the graph. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum TextInfoFlag diff --git a/Plotly.Blazor/Traces/SunburstLib/VisibleEnum.cs b/Plotly.Blazor/Traces/SunburstLib/VisibleEnum.cs index 6c763188..32e8836b 100644 --- a/Plotly.Blazor/Traces/SunburstLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/SunburstLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SunburstLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Surface.cs b/Plotly.Blazor/Traces/Surface.cs index a961983f..c2a73729 100644 --- a/Plotly.Blazor/Traces/Surface.cs +++ b/Plotly.Blazor/Traces/Surface.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Surface class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Surface : ITrace, IEquatable<Surface> diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBar.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBar.cs index 7aa21d79..b904fcd4 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ExponentFormatEnum.cs index b7560bcd..20c07180 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/LenModeEnum.cs index 11fcb00d..15bb2dbd 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/OrientationEnum.cs index c8730001..7edbda36 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowExponentEnum.cs index eb30dd28..db41d5f7 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowTickPrefixEnum.cs index e1765a61..ae209f58 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowTickSuffixEnum.cs index bfe85ddc..286ff5fc 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ThicknessModeEnum.cs index f6cd9674..5f48ba33 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickFont.cs index 80871f5c..e00174bc 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickFormatStop.cs index 05498768..d7cd7291 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickLabelOverflowEnum.cs index 2abcd3a9..ab87de36 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickLabelPositionEnum.cs index d84b26ab..403c13c9 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickModeEnum.cs index 99a55c67..32c499e7 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TicksEnum.cs index 456d2294..aef6bfac 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/Title.cs index 4a9c680a..d45c3eb9 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TitleLib/Font.cs index 163d7c19..6736629c 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TitleLib/SideEnum.cs index 6a488d0c..fc63c1b9 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/XAnchorEnum.cs index 44cf6029..5195a7da 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/XRefEnum.cs index bf68f4c2..cb2ab238 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/YAnchorEnum.cs index 60c4c64c..7eb2bc60 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/YRefEnum.cs index b82189c5..66cf99e0 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/Contours.cs b/Plotly.Blazor/Traces/SurfaceLib/Contours.cs index e4aa60db..58e0affb 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/Contours.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/Contours.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// <summary> /// The Contours class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Contours : IEquatable<Contours> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/X.cs b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/X.cs index 435700cf..e71730f7 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/X.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/X.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ContoursLib /// <summary> /// The X class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class X : IEquatable<X> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/XLib/Project.cs b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/XLib/Project.cs index bc841ee8..a284bfd2 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/XLib/Project.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/XLib/Project.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ContoursLib.XLib /// <summary> /// The Project class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Project : IEquatable<Project> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/Y.cs b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/Y.cs index 5ce81ba6..fb6c20d7 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/Y.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/Y.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ContoursLib /// <summary> /// The Y class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Y : IEquatable<Y> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/YLib/Project.cs b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/YLib/Project.cs index 096d39b3..10deb0d2 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/YLib/Project.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/YLib/Project.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ContoursLib.YLib /// <summary> /// The Project class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Project : IEquatable<Project> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/Z.cs b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/Z.cs index 601a07d3..91e38b34 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/Z.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/Z.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ContoursLib /// <summary> /// The Z class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Z : IEquatable<Z> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/ZLib/Project.cs b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/ZLib/Project.cs index 3675eec6..07d0761e 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/ZLib/Project.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ContoursLib/ZLib/Project.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.ContoursLib.ZLib /// <summary> /// The Project class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Project : IEquatable<Project> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/SurfaceLib/HoverInfoFlag.cs index aac83813..0ed506b4 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/SurfaceLib/HoverLabel.cs b/Plotly.Blazor/Traces/SurfaceLib/HoverLabel.cs index 124c5d93..fd290fd3 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/SurfaceLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/HoverLabelLib/AlignEnum.cs index cfce4421..d80c124b 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/SurfaceLib/HoverLabelLib/Font.cs index dfe438cb..0cb292df 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/SurfaceLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/SurfaceLib/Legendgrouptitle.cs index 78448b4f..56239cee 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/SurfaceLib/LegendgrouptitleLib/Font.cs index 7e2a3a85..53a55861 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/LightPosition.cs b/Plotly.Blazor/Traces/SurfaceLib/LightPosition.cs index 4ba98136..693d0690 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/LightPosition.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/LightPosition.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// <summary> /// The LightPosition class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LightPosition : IEquatable<LightPosition> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/Lighting.cs b/Plotly.Blazor/Traces/SurfaceLib/Lighting.cs index ed13c86c..65a13c0a 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/Lighting.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/Lighting.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// <summary> /// The Lighting class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Lighting : IEquatable<Lighting> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/Stream.cs b/Plotly.Blazor/Traces/SurfaceLib/Stream.cs index efc334f2..b45bd226 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/Stream.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/SurfaceLib/VisibleEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/VisibleEnum.cs index 0ed4f3ef..d8e60a15 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/XCalendarEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/XCalendarEnum.cs index 806387f7..6bcdebc3 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/XCalendarEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/XCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// <summary> /// Sets the calendar system to use with <c>x</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XCalendarEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/YCalendarEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/YCalendarEnum.cs index 6fd12507..492d0068 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/YCalendarEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/YCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// <summary> /// Sets the calendar system to use with <c>y</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YCalendarEnum { diff --git a/Plotly.Blazor/Traces/SurfaceLib/ZCalendarEnum.cs b/Plotly.Blazor/Traces/SurfaceLib/ZCalendarEnum.cs index 1bde3be0..fcef75fa 100644 --- a/Plotly.Blazor/Traces/SurfaceLib/ZCalendarEnum.cs +++ b/Plotly.Blazor/Traces/SurfaceLib/ZCalendarEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.SurfaceLib /// <summary> /// Sets the calendar system to use with <c>z</c> date data. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ZCalendarEnum { diff --git a/Plotly.Blazor/Traces/Table.cs b/Plotly.Blazor/Traces/Table.cs index 81beeecb..6130075b 100644 --- a/Plotly.Blazor/Traces/Table.cs +++ b/Plotly.Blazor/Traces/Table.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Table class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Table : ITrace, IEquatable<Table> diff --git a/Plotly.Blazor/Traces/TableLib/Cells.cs b/Plotly.Blazor/Traces/TableLib/Cells.cs index f6b7406c..7cbd283e 100644 --- a/Plotly.Blazor/Traces/TableLib/Cells.cs +++ b/Plotly.Blazor/Traces/TableLib/Cells.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib /// <summary> /// The Cells class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Cells : IEquatable<Cells> diff --git a/Plotly.Blazor/Traces/TableLib/CellsLib/AlignEnum.cs b/Plotly.Blazor/Traces/TableLib/CellsLib/AlignEnum.cs index d00a9813..5fa0d983 100644 --- a/Plotly.Blazor/Traces/TableLib/CellsLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/TableLib/CellsLib/AlignEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.TableLib.CellsLib /// one or more <br> HTML tags) or if an explicit width is set to override /// the text width. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/TableLib/CellsLib/Fill.cs b/Plotly.Blazor/Traces/TableLib/CellsLib/Fill.cs index 8ed8d3da..cedbf7bf 100644 --- a/Plotly.Blazor/Traces/TableLib/CellsLib/Fill.cs +++ b/Plotly.Blazor/Traces/TableLib/CellsLib/Fill.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib.CellsLib /// <summary> /// The Fill class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Fill : IEquatable<Fill> diff --git a/Plotly.Blazor/Traces/TableLib/CellsLib/Font.cs b/Plotly.Blazor/Traces/TableLib/CellsLib/Font.cs index 40e022c4..726737a8 100644 --- a/Plotly.Blazor/Traces/TableLib/CellsLib/Font.cs +++ b/Plotly.Blazor/Traces/TableLib/CellsLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib.CellsLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/TableLib/CellsLib/Line.cs b/Plotly.Blazor/Traces/TableLib/CellsLib/Line.cs index ceb24328..0034d43e 100644 --- a/Plotly.Blazor/Traces/TableLib/CellsLib/Line.cs +++ b/Plotly.Blazor/Traces/TableLib/CellsLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib.CellsLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/TableLib/Domain.cs b/Plotly.Blazor/Traces/TableLib/Domain.cs index b0ed6f92..67f7b01d 100644 --- a/Plotly.Blazor/Traces/TableLib/Domain.cs +++ b/Plotly.Blazor/Traces/TableLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/Traces/TableLib/Header.cs b/Plotly.Blazor/Traces/TableLib/Header.cs index 08407d9e..bbf2b5db 100644 --- a/Plotly.Blazor/Traces/TableLib/Header.cs +++ b/Plotly.Blazor/Traces/TableLib/Header.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib /// <summary> /// The Header class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Header : IEquatable<Header> diff --git a/Plotly.Blazor/Traces/TableLib/HeaderLib/AlignEnum.cs b/Plotly.Blazor/Traces/TableLib/HeaderLib/AlignEnum.cs index bc5094f0..9ae8e702 100644 --- a/Plotly.Blazor/Traces/TableLib/HeaderLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/TableLib/HeaderLib/AlignEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.TableLib.HeaderLib /// one or more <br> HTML tags) or if an explicit width is set to override /// the text width. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/TableLib/HeaderLib/Fill.cs b/Plotly.Blazor/Traces/TableLib/HeaderLib/Fill.cs index 028d73d5..8c710f3b 100644 --- a/Plotly.Blazor/Traces/TableLib/HeaderLib/Fill.cs +++ b/Plotly.Blazor/Traces/TableLib/HeaderLib/Fill.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib.HeaderLib /// <summary> /// The Fill class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Fill : IEquatable<Fill> diff --git a/Plotly.Blazor/Traces/TableLib/HeaderLib/Font.cs b/Plotly.Blazor/Traces/TableLib/HeaderLib/Font.cs index a4570053..a93d801f 100644 --- a/Plotly.Blazor/Traces/TableLib/HeaderLib/Font.cs +++ b/Plotly.Blazor/Traces/TableLib/HeaderLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib.HeaderLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/TableLib/HeaderLib/Line.cs b/Plotly.Blazor/Traces/TableLib/HeaderLib/Line.cs index 0770913b..0d55d695 100644 --- a/Plotly.Blazor/Traces/TableLib/HeaderLib/Line.cs +++ b/Plotly.Blazor/Traces/TableLib/HeaderLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib.HeaderLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/TableLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/TableLib/HoverInfoFlag.cs index d7f8884e..dbec9034 100644 --- a/Plotly.Blazor/Traces/TableLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/TableLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.TableLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/TableLib/HoverLabel.cs b/Plotly.Blazor/Traces/TableLib/HoverLabel.cs index 53a7ee39..1ef6b33a 100644 --- a/Plotly.Blazor/Traces/TableLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/TableLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/TableLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/TableLib/HoverLabelLib/AlignEnum.cs index 279fae1f..dea5a8c7 100644 --- a/Plotly.Blazor/Traces/TableLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/TableLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.TableLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/TableLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/TableLib/HoverLabelLib/Font.cs index 6af5617c..207ec266 100644 --- a/Plotly.Blazor/Traces/TableLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/TableLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TableLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/TableLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/TableLib/Legendgrouptitle.cs index 610466e3..364edf34 100644 --- a/Plotly.Blazor/Traces/TableLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/TableLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TableLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/TableLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/TableLib/LegendgrouptitleLib/Font.cs index 369a5577..edcacf15 100644 --- a/Plotly.Blazor/Traces/TableLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/TableLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TableLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/TableLib/Stream.cs b/Plotly.Blazor/Traces/TableLib/Stream.cs index 966c76b2..9743d12d 100644 --- a/Plotly.Blazor/Traces/TableLib/Stream.cs +++ b/Plotly.Blazor/Traces/TableLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TableLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/TableLib/VisibleEnum.cs b/Plotly.Blazor/Traces/TableLib/VisibleEnum.cs index e920ba84..20bbd02c 100644 --- a/Plotly.Blazor/Traces/TableLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/TableLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TableLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/TreeMap.cs b/Plotly.Blazor/Traces/TreeMap.cs index 67c092ec..9882dad0 100644 --- a/Plotly.Blazor/Traces/TreeMap.cs +++ b/Plotly.Blazor/Traces/TreeMap.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The TreeMap class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TreeMap : ITrace, IEquatable<TreeMap> diff --git a/Plotly.Blazor/Traces/TreeMapLib/BranchValuesEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/BranchValuesEnum.cs index 95d626ed..91d61723 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/BranchValuesEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/BranchValuesEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// and the branches sectors are taken to be the extra part not part of the /// sum of the values at their leaves. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum BranchValuesEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/CountFlag.cs b/Plotly.Blazor/Traces/TreeMapLib/CountFlag.cs index 3e44c983..824e75f7 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/CountFlag.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/CountFlag.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// Determines default for <c>values</c> when it is not provided, by inferring /// a 1 for each of the <c>leaves</c> and/or <c>branches</c>, otherwise 0. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum CountFlag diff --git a/Plotly.Blazor/Traces/TreeMapLib/Domain.cs b/Plotly.Blazor/Traces/TreeMapLib/Domain.cs index 066461d9..34d2704b 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/Domain.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/Domain.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The Domain class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Domain : IEquatable<Domain> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/TreeMapLib/HoverInfoFlag.cs index 9a4703dd..d9125d30 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/TreeMapLib/HoverLabel.cs b/Plotly.Blazor/Traces/TreeMapLib/HoverLabel.cs index 1789ee50..ffd4005f 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/TreeMapLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/HoverLabelLib/AlignEnum.cs index 734e9c4a..251980dd 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/TreeMapLib/HoverLabelLib/Font.cs index f0bef367..63c5bf8b 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/TreeMapLib/InsideTextFont.cs b/Plotly.Blazor/Traces/TreeMapLib/InsideTextFont.cs index 4cd21fe7..24959a60 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/InsideTextFont.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/InsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The InsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class InsideTextFont : IEquatable<InsideTextFont> diff --git a/Plotly.Blazor/Traces/TreeMapLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/TreeMapLib/Legendgrouptitle.cs index 1968cd68..2020716e 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/TreeMapLib/LegendgrouptitleLib/Font.cs index 828a9710..45f7cfc9 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/Marker.cs b/Plotly.Blazor/Traces/TreeMapLib/Marker.cs index 404f29d6..663b1aca 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/Marker.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/Marker.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBar.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBar.cs index be817ab1..da783382 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs index ea78e78c..681d451b 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/LenModeEnum.cs index e473f607..a8214858 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/OrientationEnum.cs index 379a00ea..936205f2 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs index c2f376e5..7657eafa 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs index c1a9d63a..f3f0fb0b 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs index 81dd754a..2b19b597 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs index e2779fb8..b02a49b8 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickFont.cs index 8b1ed6c5..45aa6d28 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickFormatStop.cs index 71737a9b..fa09cce9 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs index 5f654a55..17fd97ec 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs index d42622b8..8a6d8a98 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickModeEnum.cs index efa10569..9e2e7b61 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TicksEnum.cs index e66f206a..51008180 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/Title.cs index fafcf5c1..598da520 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TitleLib/Font.cs index d590f4a6..0ac67417 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs index 198fdb09..6aaf5a05 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/XAnchorEnum.cs index a0020821..1737c165 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/XRefEnum.cs index daf75744..a6227c3c 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/YAnchorEnum.cs index b5bc7294..09ae0487 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/YRefEnum.cs index 197cefb2..cb6555e3 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/DepthFadeEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/DepthFadeEnum.cs index a5bdb113..966cb756 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/DepthFadeEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/DepthFadeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib /// that is the top elements within hierarchy are drawn with fully saturated /// colors while the leaves are faded towards the background color. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum DepthFadeEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Line.cs index c86e173e..4b3be7fc 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Line.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Line : IEquatable<Line> diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Pad.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Pad.cs index 709a30ca..5124a8df 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Pad.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Pad.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib /// <summary> /// The Pad class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Pad : IEquatable<Pad> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Pattern.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Pattern.cs index 2fcb834e..719124ed 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Pattern.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/Pattern.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib /// <summary> /// The Pattern class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Pattern : IEquatable<Pattern> diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/PatternLib/FillModeEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/PatternLib/FillModeEnum.cs index 8eeeb7d5..0e5f829d 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/PatternLib/FillModeEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/PatternLib/FillModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.PatternLib /// Determines whether <c>marker.color</c> should be used as a default to <c>bgcolor</c> /// or a <c>fgcolor</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FillModeEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/PatternLib/ShapeEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/PatternLib/ShapeEnum.cs index c8c155eb..f7d602a4 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/PatternLib/ShapeEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/MarkerLib/PatternLib/ShapeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.MarkerLib.PatternLib /// Sets the shape of the pattern fill. By default, no pattern is used for filling /// the area. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShapeEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/OutsideTextFont.cs b/Plotly.Blazor/Traces/TreeMapLib/OutsideTextFont.cs index d400194d..84950dbf 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/OutsideTextFont.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/OutsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The OutsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class OutsideTextFont : IEquatable<OutsideTextFont> diff --git a/Plotly.Blazor/Traces/TreeMapLib/PathBar.cs b/Plotly.Blazor/Traces/TreeMapLib/PathBar.cs index 7ed5b133..be2225ed 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/PathBar.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/PathBar.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The PathBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class PathBar : IEquatable<PathBar> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/EdgeShapeEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/EdgeShapeEnum.cs index bd0dceb4..61b2704c 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/EdgeShapeEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/EdgeShapeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.PathBarLib /// <summary> /// Determines which shape is used for edges between <c>barpath</c> labels. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum EdgeShapeEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/SideEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/SideEnum.cs index 0b16ab4d..13cd1b3d 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/SideEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.PathBarLib /// Determines on which side of the the treemap the <c>pathbar</c> should be /// presented. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/TextFont.cs b/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/TextFont.cs index ed9d5966..2f4aa8f7 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/TextFont.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/PathBarLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.PathBarLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/TreeMapLib/Root.cs b/Plotly.Blazor/Traces/TreeMapLib/Root.cs index cd1ade0d..8cd0600f 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/Root.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/Root.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The Root class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Root : IEquatable<Root> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/Stream.cs b/Plotly.Blazor/Traces/TreeMapLib/Stream.cs index c57e1472..8a6afc47 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/Stream.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/TextFont.cs b/Plotly.Blazor/Traces/TreeMapLib/TextFont.cs index 4c87bc43..ceb62bc4 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/TextFont.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/TreeMapLib/TextInfoFlag.cs b/Plotly.Blazor/Traces/TreeMapLib/TextInfoFlag.cs index 1406f3fc..0bfad16b 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/TextInfoFlag.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/TextInfoFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// Determines which trace information appear on the graph. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum TextInfoFlag diff --git a/Plotly.Blazor/Traces/TreeMapLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/TextPositionEnum.cs index 72882be6..92e1e09b 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/TextPositionEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// Sets the positions of the <c>text</c> elements. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/Tiling.cs b/Plotly.Blazor/Traces/TreeMapLib/Tiling.cs index a9339bc0..7fdec324 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/Tiling.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/Tiling.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// <summary> /// The Tiling class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Tiling : IEquatable<Tiling> { diff --git a/Plotly.Blazor/Traces/TreeMapLib/TilingLib/FlipFlag.cs b/Plotly.Blazor/Traces/TreeMapLib/TilingLib/FlipFlag.cs index e03a550e..c8f3644a 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/TilingLib/FlipFlag.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/TilingLib/FlipFlag.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.TilingLib /// <summary> /// Determines if the positions obtained from solver are flipped on each axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum FlipFlag diff --git a/Plotly.Blazor/Traces/TreeMapLib/TilingLib/PackingEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/TilingLib/PackingEnum.cs index e976e104..a91ee89d 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/TilingLib/PackingEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/TilingLib/PackingEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib.TilingLib /// <summary> /// Determines d3 treemap solver. For more info please refer to https://github.com/d3/d3-hierarchy#treemap-tiling /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum PackingEnum { diff --git a/Plotly.Blazor/Traces/TreeMapLib/VisibleEnum.cs b/Plotly.Blazor/Traces/TreeMapLib/VisibleEnum.cs index 0aa414c4..07380241 100644 --- a/Plotly.Blazor/Traces/TreeMapLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/TreeMapLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.TreeMapLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Violin.cs b/Plotly.Blazor/Traces/Violin.cs index 04891a9d..0feef832 100644 --- a/Plotly.Blazor/Traces/Violin.cs +++ b/Plotly.Blazor/Traces/Violin.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Violin class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Violin : ITrace, IEquatable<Violin> diff --git a/Plotly.Blazor/Traces/ViolinLib/Box.cs b/Plotly.Blazor/Traces/ViolinLib/Box.cs index 8b61624f..6063c4f7 100644 --- a/Plotly.Blazor/Traces/ViolinLib/Box.cs +++ b/Plotly.Blazor/Traces/ViolinLib/Box.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// <summary> /// The Box class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Box : IEquatable<Box> { diff --git a/Plotly.Blazor/Traces/ViolinLib/BoxLib/Line.cs b/Plotly.Blazor/Traces/ViolinLib/BoxLib/Line.cs index 6e164d92..8a313bbc 100644 --- a/Plotly.Blazor/Traces/ViolinLib/BoxLib/Line.cs +++ b/Plotly.Blazor/Traces/ViolinLib/BoxLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib.BoxLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/ViolinLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/ViolinLib/HoverInfoFlag.cs index 58a8b01d..a8e4610b 100644 --- a/Plotly.Blazor/Traces/ViolinLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/ViolinLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/ViolinLib/HoverLabel.cs b/Plotly.Blazor/Traces/ViolinLib/HoverLabel.cs index eeb39803..959a437b 100644 --- a/Plotly.Blazor/Traces/ViolinLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/ViolinLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/ViolinLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/ViolinLib/HoverLabelLib/AlignEnum.cs index 36e3b2f1..6ca0b970 100644 --- a/Plotly.Blazor/Traces/ViolinLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/ViolinLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ViolinLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/ViolinLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/ViolinLib/HoverLabelLib/Font.cs index 19dd3c47..19eda510 100644 --- a/Plotly.Blazor/Traces/ViolinLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/ViolinLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.ViolinLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/ViolinLib/HoverOnFlag.cs b/Plotly.Blazor/Traces/ViolinLib/HoverOnFlag.cs index 265411e5..46627ae1 100644 --- a/Plotly.Blazor/Traces/ViolinLib/HoverOnFlag.cs +++ b/Plotly.Blazor/Traces/ViolinLib/HoverOnFlag.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// Do the hover effects highlight individual violins or sample points or the /// kernel density estimate or any combination of them? /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverOnFlag diff --git a/Plotly.Blazor/Traces/ViolinLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/ViolinLib/Legendgrouptitle.cs index 8682adf2..6411238b 100644 --- a/Plotly.Blazor/Traces/ViolinLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/ViolinLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/ViolinLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/ViolinLib/LegendgrouptitleLib/Font.cs index 2f4c5248..ad6699f0 100644 --- a/Plotly.Blazor/Traces/ViolinLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/ViolinLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/ViolinLib/Line.cs b/Plotly.Blazor/Traces/ViolinLib/Line.cs index e3affdcc..29ec05d6 100644 --- a/Plotly.Blazor/Traces/ViolinLib/Line.cs +++ b/Plotly.Blazor/Traces/ViolinLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/ViolinLib/Marker.cs b/Plotly.Blazor/Traces/ViolinLib/Marker.cs index d2a2ed85..9de9d51b 100644 --- a/Plotly.Blazor/Traces/ViolinLib/Marker.cs +++ b/Plotly.Blazor/Traces/ViolinLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ViolinLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/ViolinLib/MarkerLib/Line.cs index 3f2e8cbc..dc7d1434 100644 --- a/Plotly.Blazor/Traces/ViolinLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/ViolinLib/MarkerLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/ViolinLib/MarkerLib/SymbolEnum.cs b/Plotly.Blazor/Traces/ViolinLib/MarkerLib/SymbolEnum.cs index 3a016a00..9828e94e 100644 --- a/Plotly.Blazor/Traces/ViolinLib/MarkerLib/SymbolEnum.cs +++ b/Plotly.Blazor/Traces/ViolinLib/MarkerLib/SymbolEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ViolinLib.MarkerLib /// symbol name. Adding 300 is equivalent to appending <c>-open-dot</c> or <c>dot-open</c> /// to a symbol name. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SymbolEnum { diff --git a/Plotly.Blazor/Traces/ViolinLib/MeanLine.cs b/Plotly.Blazor/Traces/ViolinLib/MeanLine.cs index 7cd5bf1f..b4232ae3 100644 --- a/Plotly.Blazor/Traces/ViolinLib/MeanLine.cs +++ b/Plotly.Blazor/Traces/ViolinLib/MeanLine.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// <summary> /// The MeanLine class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class MeanLine : IEquatable<MeanLine> { diff --git a/Plotly.Blazor/Traces/ViolinLib/OrientationEnum.cs b/Plotly.Blazor/Traces/ViolinLib/OrientationEnum.cs index f5b8815e..74032a9b 100644 --- a/Plotly.Blazor/Traces/ViolinLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/ViolinLib/OrientationEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// Sets the orientation of the violin(s). If <c>v</c> (<c>h</c>), the distribution /// is visualized along the vertical (horizontal). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/ViolinLib/PointsEnum.cs b/Plotly.Blazor/Traces/ViolinLib/PointsEnum.cs index c417384d..d2d6d8cc 100644 --- a/Plotly.Blazor/Traces/ViolinLib/PointsEnum.cs +++ b/Plotly.Blazor/Traces/ViolinLib/PointsEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// to <c>suspectedoutliers</c> when <c>marker.outliercolor</c> or <c>marker.line.outliercolor</c> /// is set, otherwise defaults to <c>outliers</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum PointsEnum { diff --git a/Plotly.Blazor/Traces/ViolinLib/QuartileMethodEnum.cs b/Plotly.Blazor/Traces/ViolinLib/QuartileMethodEnum.cs index 011e05d9..476ed3f2 100644 --- a/Plotly.Blazor/Traces/ViolinLib/QuartileMethodEnum.cs +++ b/Plotly.Blazor/Traces/ViolinLib/QuartileMethodEnum.cs @@ -20,7 +20,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// the median in both halves - Q1 is then the median of the lower half and /// Q3 the median of the upper half. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum QuartileMethodEnum { diff --git a/Plotly.Blazor/Traces/ViolinLib/ScaleModeEnum.cs b/Plotly.Blazor/Traces/ViolinLib/ScaleModeEnum.cs index c4db708b..47b844c8 100644 --- a/Plotly.Blazor/Traces/ViolinLib/ScaleModeEnum.cs +++ b/Plotly.Blazor/Traces/ViolinLib/ScaleModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// means each violin has the same (max) width <c>count</c> means the violins /// are scaled by the number of sample points making up each violin. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ScaleModeEnum { diff --git a/Plotly.Blazor/Traces/ViolinLib/Selected.cs b/Plotly.Blazor/Traces/ViolinLib/Selected.cs index d44add82..eafbd831 100644 --- a/Plotly.Blazor/Traces/ViolinLib/Selected.cs +++ b/Plotly.Blazor/Traces/ViolinLib/Selected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// <summary> /// The Selected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Selected : IEquatable<Selected> { diff --git a/Plotly.Blazor/Traces/ViolinLib/SelectedLib/Marker.cs b/Plotly.Blazor/Traces/ViolinLib/SelectedLib/Marker.cs index 545a898f..99f17f29 100644 --- a/Plotly.Blazor/Traces/ViolinLib/SelectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ViolinLib/SelectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib.SelectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ViolinLib/SideEnum.cs b/Plotly.Blazor/Traces/ViolinLib/SideEnum.cs index f6697408..97e18e5e 100644 --- a/Plotly.Blazor/Traces/ViolinLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/ViolinLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// under <c>overlay</c> mode, where one trace has <c>side</c> set to <c>positive</c> /// and the other to <c>negative</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/ViolinLib/SpanModeEnum.cs b/Plotly.Blazor/Traces/ViolinLib/SpanModeEnum.cs index b10bee7b..884eb20d 100644 --- a/Plotly.Blazor/Traces/ViolinLib/SpanModeEnum.cs +++ b/Plotly.Blazor/Traces/ViolinLib/SpanModeEnum.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// to its maximum value. For custom span settings, use mode <c>manual</c> and /// fill in the <c>span</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SpanModeEnum { diff --git a/Plotly.Blazor/Traces/ViolinLib/Stream.cs b/Plotly.Blazor/Traces/ViolinLib/Stream.cs index 8f6824af..dc001ada 100644 --- a/Plotly.Blazor/Traces/ViolinLib/Stream.cs +++ b/Plotly.Blazor/Traces/ViolinLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/ViolinLib/Unselected.cs b/Plotly.Blazor/Traces/ViolinLib/Unselected.cs index 96db1871..3b4e6d27 100644 --- a/Plotly.Blazor/Traces/ViolinLib/Unselected.cs +++ b/Plotly.Blazor/Traces/ViolinLib/Unselected.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// <summary> /// The Unselected class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Unselected : IEquatable<Unselected> { diff --git a/Plotly.Blazor/Traces/ViolinLib/UnselectedLib/Marker.cs b/Plotly.Blazor/Traces/ViolinLib/UnselectedLib/Marker.cs index 349bc5b7..8e87443b 100644 --- a/Plotly.Blazor/Traces/ViolinLib/UnselectedLib/Marker.cs +++ b/Plotly.Blazor/Traces/ViolinLib/UnselectedLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib.UnselectedLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/ViolinLib/VisibleEnum.cs b/Plotly.Blazor/Traces/ViolinLib/VisibleEnum.cs index b7a6a90f..a5288723 100644 --- a/Plotly.Blazor/Traces/ViolinLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/ViolinLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.ViolinLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Volume.cs b/Plotly.Blazor/Traces/Volume.cs index 898da1c1..02ff4184 100644 --- a/Plotly.Blazor/Traces/Volume.cs +++ b/Plotly.Blazor/Traces/Volume.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Volume class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Volume : ITrace, IEquatable<Volume> diff --git a/Plotly.Blazor/Traces/VolumeLib/Caps.cs b/Plotly.Blazor/Traces/VolumeLib/Caps.cs index 350a57da..322e2898 100644 --- a/Plotly.Blazor/Traces/VolumeLib/Caps.cs +++ b/Plotly.Blazor/Traces/VolumeLib/Caps.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The Caps class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Caps : IEquatable<Caps> { diff --git a/Plotly.Blazor/Traces/VolumeLib/CapsLib/X.cs b/Plotly.Blazor/Traces/VolumeLib/CapsLib/X.cs index ce1d97d0..6eb2dd9c 100644 --- a/Plotly.Blazor/Traces/VolumeLib/CapsLib/X.cs +++ b/Plotly.Blazor/Traces/VolumeLib/CapsLib/X.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.CapsLib /// <summary> /// The X class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class X : IEquatable<X> { diff --git a/Plotly.Blazor/Traces/VolumeLib/CapsLib/Y.cs b/Plotly.Blazor/Traces/VolumeLib/CapsLib/Y.cs index 0353bced..ca98ae75 100644 --- a/Plotly.Blazor/Traces/VolumeLib/CapsLib/Y.cs +++ b/Plotly.Blazor/Traces/VolumeLib/CapsLib/Y.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.CapsLib /// <summary> /// The Y class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Y : IEquatable<Y> { diff --git a/Plotly.Blazor/Traces/VolumeLib/CapsLib/Z.cs b/Plotly.Blazor/Traces/VolumeLib/CapsLib/Z.cs index 55269107..d2277a84 100644 --- a/Plotly.Blazor/Traces/VolumeLib/CapsLib/Z.cs +++ b/Plotly.Blazor/Traces/VolumeLib/CapsLib/Z.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.CapsLib /// <summary> /// The Z class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Z : IEquatable<Z> { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBar.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBar.cs index ef2ab99b..ea8a9cc9 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBar.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBar.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The ColorBar class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class ColorBar : IEquatable<ColorBar> { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ExponentFormatEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ExponentFormatEnum.cs index ab06962c..bbd1d633 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ExponentFormatEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ExponentFormatEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// <c>e</c>, 1e+9. If <c>E</c>, 1E+9. If <c>power</c>, 1x10^9 (with 9 in a /// super script). If <c>SI</c>, 1G. If <c>B</c>, 1B. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ExponentFormatEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/LenModeEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/LenModeEnum.cs index 2bd9ac69..7bd05c5c 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/LenModeEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/LenModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// color variation direction) is set in units of plot <c>fraction</c> or in /// *pixels. Use <c>len</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum LenModeEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/OrientationEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/OrientationEnum.cs index 61329354..4f45ade8 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/OrientationEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// <summary> /// Sets the orientation of the colorbar. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowExponentEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowExponentEnum.cs index 7ce476e4..6a3d8368 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowExponentEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowExponentEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// only the exponent of the first tick is shown. If <c>last</c>, only the exponent /// of the last tick is shown. If <c>none</c>, no exponents appear. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowExponentEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowTickPrefixEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowTickPrefixEnum.cs index d1d7f4e4..887fc5aa 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowTickPrefixEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowTickPrefixEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// last tick is displayed with a suffix. If <c>none</c>, tick prefixes are /// hidden. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickPrefixEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowTickSuffixEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowTickSuffixEnum.cs index 2480623f..fda82f67 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowTickSuffixEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ShowTickSuffixEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// <summary> /// Same as <c>showtickprefix</c> but for tick suffixes. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ShowTickSuffixEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ThicknessModeEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ThicknessModeEnum.cs index f45eb190..0045405c 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ThicknessModeEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/ThicknessModeEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// constant color direction) is set in units of plot <c>fraction</c> or in /// <c>pixels</c>. Use <c>thickness</c> to set the value. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ThicknessModeEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickFont.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickFont.cs index ade64b5f..1204db35 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickFont.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickFont.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// <summary> /// The TickFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFont : IEquatable<TickFont> { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickFormatStop.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickFormatStop.cs index a6accb79..4ab6c65f 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickFormatStop.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickFormatStop.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// <summary> /// The TickFormatStop class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class TickFormatStop : IEquatable<TickFormatStop> { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickLabelOverflowEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickLabelOverflowEnum.cs index 4674f271..0eaf31a7 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickLabelOverflowEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickLabelOverflowEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// is 'hide past domain'. In other cases the default is 'hide past /// div'. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelOverflowEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickLabelPositionEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickLabelPositionEnum.cs index cb1a2b09..9f47b364 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickLabelPositionEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickLabelPositionEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// options are used when <c>orientation</c> is <c>h</c>, top and bottom when /// <c>orientation</c> is <c>v</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickLabelPositionEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickModeEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickModeEnum.cs index a41acb93..df44c569 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickModeEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TickModeEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// the tick text is <c>ticktext</c>. (<c>array</c> is the default value if /// <c>tickvals</c> is provided). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TickModeEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TicksEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TicksEnum.cs index 275cb9f9..b892b528 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TicksEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TicksEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// not drawn. If <c>outside</c> (<c>inside</c>), this axis' are drawn outside /// (inside) the axis lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TicksEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/Title.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/Title.cs index ed42d9e3..1fad742c 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/Title.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/Title.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// <summary> /// The Title class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Title : IEquatable<Title> { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TitleLib/Font.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TitleLib/Font.cs index 91027fa8..baa2ed3b 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TitleLib/Font.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib.TitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TitleLib/SideEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TitleLib/SideEnum.cs index f8420003..9b0cf912 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TitleLib/SideEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/TitleLib/SideEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib.TitleLib /// to <c>right</c> when <c>orientation</c> if <c>h</c>. Note that the title's /// location used to be set by the now deprecated <c>titleside</c> attribute. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum SideEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/XAnchorEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/XAnchorEnum.cs index d06fdd49..686201ef 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/XAnchorEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/XAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// of the color bar. Defaults to <c>left</c> when <c>orientation</c> is <c>v</c> /// and <c>center</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XAnchorEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/XRefEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/XRefEnum.cs index 7685d2fb..2eba645a 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/XRefEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/XRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// <c>width</c> of the plot. <c>paper</c> refers to the width of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XRefEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/YAnchorEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/YAnchorEnum.cs index 06950148..ae89cd6b 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/YAnchorEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/YAnchorEnum.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// color bar. Defaults to <c>middle</c> when <c>orientation</c> is <c>v</c> /// and <c>bottom</c> when <c>orientation</c> is <c>h</c>. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YAnchorEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/YRefEnum.cs b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/YRefEnum.cs index 47bc9f1c..4e0cefe1 100644 --- a/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/YRefEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/ColorBarLib/YRefEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.ColorBarLib /// <c>height</c> of the plot. <c>paper</c> refers to the height of the plotting /// area only. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YRefEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/Contour.cs b/Plotly.Blazor/Traces/VolumeLib/Contour.cs index f99b08ad..1fdfb112 100644 --- a/Plotly.Blazor/Traces/VolumeLib/Contour.cs +++ b/Plotly.Blazor/Traces/VolumeLib/Contour.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The Contour class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Contour : IEquatable<Contour> { diff --git a/Plotly.Blazor/Traces/VolumeLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/VolumeLib/HoverInfoFlag.cs index 0b75c5b5..4fee85e0 100644 --- a/Plotly.Blazor/Traces/VolumeLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/VolumeLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/VolumeLib/HoverLabel.cs b/Plotly.Blazor/Traces/VolumeLib/HoverLabel.cs index e246a927..656c507a 100644 --- a/Plotly.Blazor/Traces/VolumeLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/VolumeLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/VolumeLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/VolumeLib/HoverLabelLib/AlignEnum.cs index d4b07897..2ab7cb48 100644 --- a/Plotly.Blazor/Traces/VolumeLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/VolumeLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/VolumeLib/HoverLabelLib/Font.cs index 5099a133..275a9e81 100644 --- a/Plotly.Blazor/Traces/VolumeLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/VolumeLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/VolumeLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/VolumeLib/Legendgrouptitle.cs index 9ca31b1d..df8aa45c 100644 --- a/Plotly.Blazor/Traces/VolumeLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/VolumeLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/VolumeLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/VolumeLib/LegendgrouptitleLib/Font.cs index 648a9e35..7619f8d9 100644 --- a/Plotly.Blazor/Traces/VolumeLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/VolumeLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/VolumeLib/LightPosition.cs b/Plotly.Blazor/Traces/VolumeLib/LightPosition.cs index 75563b9e..6259fe1e 100644 --- a/Plotly.Blazor/Traces/VolumeLib/LightPosition.cs +++ b/Plotly.Blazor/Traces/VolumeLib/LightPosition.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The LightPosition class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LightPosition : IEquatable<LightPosition> { diff --git a/Plotly.Blazor/Traces/VolumeLib/Lighting.cs b/Plotly.Blazor/Traces/VolumeLib/Lighting.cs index 338bb808..b0aee5cb 100644 --- a/Plotly.Blazor/Traces/VolumeLib/Lighting.cs +++ b/Plotly.Blazor/Traces/VolumeLib/Lighting.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The Lighting class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Lighting : IEquatable<Lighting> { diff --git a/Plotly.Blazor/Traces/VolumeLib/Slices.cs b/Plotly.Blazor/Traces/VolumeLib/Slices.cs index 3e037fed..f9a19eda 100644 --- a/Plotly.Blazor/Traces/VolumeLib/Slices.cs +++ b/Plotly.Blazor/Traces/VolumeLib/Slices.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The Slices class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Slices : IEquatable<Slices> { diff --git a/Plotly.Blazor/Traces/VolumeLib/SlicesLib/X.cs b/Plotly.Blazor/Traces/VolumeLib/SlicesLib/X.cs index 649b2e51..7b83f1ea 100644 --- a/Plotly.Blazor/Traces/VolumeLib/SlicesLib/X.cs +++ b/Plotly.Blazor/Traces/VolumeLib/SlicesLib/X.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.SlicesLib /// <summary> /// The X class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class X : IEquatable<X> { diff --git a/Plotly.Blazor/Traces/VolumeLib/SlicesLib/Y.cs b/Plotly.Blazor/Traces/VolumeLib/SlicesLib/Y.cs index fdd74c46..dd9c9361 100644 --- a/Plotly.Blazor/Traces/VolumeLib/SlicesLib/Y.cs +++ b/Plotly.Blazor/Traces/VolumeLib/SlicesLib/Y.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.SlicesLib /// <summary> /// The Y class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Y : IEquatable<Y> { diff --git a/Plotly.Blazor/Traces/VolumeLib/SlicesLib/Z.cs b/Plotly.Blazor/Traces/VolumeLib/SlicesLib/Z.cs index 8dcec691..807b3dde 100644 --- a/Plotly.Blazor/Traces/VolumeLib/SlicesLib/Z.cs +++ b/Plotly.Blazor/Traces/VolumeLib/SlicesLib/Z.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.SlicesLib /// <summary> /// The Z class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Z : IEquatable<Z> { diff --git a/Plotly.Blazor/Traces/VolumeLib/SpaceFrame.cs b/Plotly.Blazor/Traces/VolumeLib/SpaceFrame.cs index 68b202ca..4f0a16b2 100644 --- a/Plotly.Blazor/Traces/VolumeLib/SpaceFrame.cs +++ b/Plotly.Blazor/Traces/VolumeLib/SpaceFrame.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The SpaceFrame class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class SpaceFrame : IEquatable<SpaceFrame> { diff --git a/Plotly.Blazor/Traces/VolumeLib/Stream.cs b/Plotly.Blazor/Traces/VolumeLib/Stream.cs index fdfe2c81..eff103e3 100644 --- a/Plotly.Blazor/Traces/VolumeLib/Stream.cs +++ b/Plotly.Blazor/Traces/VolumeLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/VolumeLib/Surface.cs b/Plotly.Blazor/Traces/VolumeLib/Surface.cs index e9c1e957..49aae926 100644 --- a/Plotly.Blazor/Traces/VolumeLib/Surface.cs +++ b/Plotly.Blazor/Traces/VolumeLib/Surface.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// <summary> /// The Surface class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Surface : IEquatable<Surface> { diff --git a/Plotly.Blazor/Traces/VolumeLib/SurfaceLib/PatternFlag.cs b/Plotly.Blazor/Traces/VolumeLib/SurfaceLib/PatternFlag.cs index d4c2aa15..862ca0aa 100644 --- a/Plotly.Blazor/Traces/VolumeLib/SurfaceLib/PatternFlag.cs +++ b/Plotly.Blazor/Traces/VolumeLib/SurfaceLib/PatternFlag.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.VolumeLib.SurfaceLib /// <c>B</c>, <c>C</c>, <c>D</c> and <c>E</c> may also be used to reduce the /// number of triangles on the iso-surfaces and creating other patterns of interest. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum PatternFlag diff --git a/Plotly.Blazor/Traces/VolumeLib/VisibleEnum.cs b/Plotly.Blazor/Traces/VolumeLib/VisibleEnum.cs index 34820301..f296634a 100644 --- a/Plotly.Blazor/Traces/VolumeLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/VolumeLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.VolumeLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/Waterfall.cs b/Plotly.Blazor/Traces/Waterfall.cs index a5e90648..39328e7e 100644 --- a/Plotly.Blazor/Traces/Waterfall.cs +++ b/Plotly.Blazor/Traces/Waterfall.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Traces /// The Waterfall class. /// Implements the <see cref="ITrace" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Waterfall : ITrace, IEquatable<Waterfall> diff --git a/Plotly.Blazor/Traces/WaterfallLib/Connector.cs b/Plotly.Blazor/Traces/WaterfallLib/Connector.cs index a364d73f..f8e29372 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/Connector.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/Connector.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// <summary> /// The Connector class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Connector : IEquatable<Connector> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/ConnectorLib/Line.cs b/Plotly.Blazor/Traces/WaterfallLib/ConnectorLib/Line.cs index 1a687087..6a8bf229 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/ConnectorLib/Line.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/ConnectorLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.ConnectorLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/ConnectorLib/ModeEnum.cs b/Plotly.Blazor/Traces/WaterfallLib/ConnectorLib/ModeEnum.cs index 14a2ecba..890a5135 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/ConnectorLib/ModeEnum.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/ConnectorLib/ModeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.ConnectorLib /// <summary> /// Sets the shape of connector lines. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ModeEnum { diff --git a/Plotly.Blazor/Traces/WaterfallLib/ConstrainTextEnum.cs b/Plotly.Blazor/Traces/WaterfallLib/ConstrainTextEnum.cs index 0684b2be..d8b1afe9 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/ConstrainTextEnum.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/ConstrainTextEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// Constrain the size of text inside or outside a bar to be no larger than /// the bar itself. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ConstrainTextEnum { diff --git a/Plotly.Blazor/Traces/WaterfallLib/Decreasing.cs b/Plotly.Blazor/Traces/WaterfallLib/Decreasing.cs index d51893fb..09155490 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/Decreasing.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/Decreasing.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// <summary> /// The Decreasing class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Decreasing : IEquatable<Decreasing> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/DecreasingLib/Marker.cs b/Plotly.Blazor/Traces/WaterfallLib/DecreasingLib/Marker.cs index 48fdab76..e3a33a9e 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/DecreasingLib/Marker.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/DecreasingLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.DecreasingLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/DecreasingLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/WaterfallLib/DecreasingLib/MarkerLib/Line.cs index ed89b3e2..96d8f586 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/DecreasingLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/DecreasingLib/MarkerLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.DecreasingLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/HoverInfoFlag.cs b/Plotly.Blazor/Traces/WaterfallLib/HoverInfoFlag.cs index 153af361..f8740d51 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/HoverInfoFlag.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/HoverInfoFlag.cs @@ -14,7 +14,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// are set, no information is displayed upon hovering. But, if <c>none</c> /// is set, click and hover events are still fired. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum HoverInfoFlag diff --git a/Plotly.Blazor/Traces/WaterfallLib/HoverLabel.cs b/Plotly.Blazor/Traces/WaterfallLib/HoverLabel.cs index 3fa88c88..11ea2a5d 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/HoverLabel.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/HoverLabel.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// <summary> /// The HoverLabel class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class HoverLabel : IEquatable<HoverLabel> diff --git a/Plotly.Blazor/Traces/WaterfallLib/HoverLabelLib/AlignEnum.cs b/Plotly.Blazor/Traces/WaterfallLib/HoverLabelLib/AlignEnum.cs index db0b5a75..2a530839 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/HoverLabelLib/AlignEnum.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/HoverLabelLib/AlignEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.HoverLabelLib /// Sets the horizontal alignment of the text content within hover label box. /// Has an effect only if the hover label text spans more two or more lines /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum AlignEnum { diff --git a/Plotly.Blazor/Traces/WaterfallLib/HoverLabelLib/Font.cs b/Plotly.Blazor/Traces/WaterfallLib/HoverLabelLib/Font.cs index 44500e2c..cefd19b5 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/HoverLabelLib/Font.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/HoverLabelLib/Font.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.HoverLabelLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Font : IEquatable<Font> diff --git a/Plotly.Blazor/Traces/WaterfallLib/Increasing.cs b/Plotly.Blazor/Traces/WaterfallLib/Increasing.cs index b855018d..534efff4 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/Increasing.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/Increasing.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// <summary> /// The Increasing class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Increasing : IEquatable<Increasing> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/IncreasingLib/Marker.cs b/Plotly.Blazor/Traces/WaterfallLib/IncreasingLib/Marker.cs index b6e48400..a4c3762f 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/IncreasingLib/Marker.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/IncreasingLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.IncreasingLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/IncreasingLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/WaterfallLib/IncreasingLib/MarkerLib/Line.cs index e6879b0e..61e8dc11 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/IncreasingLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/IncreasingLib/MarkerLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.IncreasingLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/InsideTextAnchorEnum.cs b/Plotly.Blazor/Traces/WaterfallLib/InsideTextAnchorEnum.cs index 70f4e19c..5a887ca0 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/InsideTextAnchorEnum.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/InsideTextAnchorEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// Determines if texts are kept at center or start/end points in <c>textposition</c> /// <c>inside</c> mode. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum InsideTextAnchorEnum { diff --git a/Plotly.Blazor/Traces/WaterfallLib/InsideTextFont.cs b/Plotly.Blazor/Traces/WaterfallLib/InsideTextFont.cs index 4970f032..c0f23b07 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/InsideTextFont.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/InsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// <summary> /// The InsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class InsideTextFont : IEquatable<InsideTextFont> diff --git a/Plotly.Blazor/Traces/WaterfallLib/Legendgrouptitle.cs b/Plotly.Blazor/Traces/WaterfallLib/Legendgrouptitle.cs index 249e7228..b03d7761 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/Legendgrouptitle.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/Legendgrouptitle.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// <summary> /// The LegendGroupTitle class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class LegendGroupTitle : IEquatable<LegendGroupTitle> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/LegendgrouptitleLib/Font.cs b/Plotly.Blazor/Traces/WaterfallLib/LegendgrouptitleLib/Font.cs index fce9f0bc..71be1773 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/LegendgrouptitleLib/Font.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/LegendgrouptitleLib/Font.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.LegendGroupTitleLib /// <summary> /// The Font class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Font : IEquatable<Font> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/OrientationEnum.cs b/Plotly.Blazor/Traces/WaterfallLib/OrientationEnum.cs index 6010c62e..1fe51b03 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/OrientationEnum.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/OrientationEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// Sets the orientation of the bars. With <c>v</c> (<c>h</c>), the value of /// the each bar spans along the vertical (horizontal). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrientationEnum { diff --git a/Plotly.Blazor/Traces/WaterfallLib/OutsideTextFont.cs b/Plotly.Blazor/Traces/WaterfallLib/OutsideTextFont.cs index 99436ca8..c25d4ac7 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/OutsideTextFont.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/OutsideTextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// <summary> /// The OutsideTextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class OutsideTextFont : IEquatable<OutsideTextFont> diff --git a/Plotly.Blazor/Traces/WaterfallLib/Stream.cs b/Plotly.Blazor/Traces/WaterfallLib/Stream.cs index 6733a7ec..14a544f6 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/Stream.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/Stream.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// <summary> /// The Stream class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Stream : IEquatable<Stream> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/TextFont.cs b/Plotly.Blazor/Traces/WaterfallLib/TextFont.cs index e912e7bf..8d7ffff7 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/TextFont.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/TextFont.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// <summary> /// The TextFont class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class TextFont : IEquatable<TextFont> diff --git a/Plotly.Blazor/Traces/WaterfallLib/TextInfoFlag.cs b/Plotly.Blazor/Traces/WaterfallLib/TextInfoFlag.cs index 9e6330f1..a98447c5 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/TextInfoFlag.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/TextInfoFlag.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// Determines which trace information appear on the graph. In the case of having /// multiple waterfalls, totals are computed separately (per trace). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Flags] [JsonConverter(typeof(EnumConverter))] public enum TextInfoFlag diff --git a/Plotly.Blazor/Traces/WaterfallLib/TextPositionEnum.cs b/Plotly.Blazor/Traces/WaterfallLib/TextPositionEnum.cs index c39d0830..2e7afb77 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/TextPositionEnum.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/TextPositionEnum.cs @@ -17,7 +17,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// is too small and no bar is stacked on this one the text is moved outside. /// If <c>none</c>, no text appears. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TextPositionEnum { diff --git a/Plotly.Blazor/Traces/WaterfallLib/Totals.cs b/Plotly.Blazor/Traces/WaterfallLib/Totals.cs index b5fe4592..728ca6eb 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/Totals.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/Totals.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// <summary> /// The Totals class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Totals : IEquatable<Totals> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/TotalsLib/Marker.cs b/Plotly.Blazor/Traces/WaterfallLib/TotalsLib/Marker.cs index fb457645..32dbcdf6 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/TotalsLib/Marker.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/TotalsLib/Marker.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.TotalsLib /// <summary> /// The Marker class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Marker : IEquatable<Marker> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/TotalsLib/MarkerLib/Line.cs b/Plotly.Blazor/Traces/WaterfallLib/TotalsLib/MarkerLib/Line.cs index da12b2b2..24e7c454 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/TotalsLib/MarkerLib/Line.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/TotalsLib/MarkerLib/Line.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib.TotalsLib.MarkerLib /// <summary> /// The Line class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Line : IEquatable<Line> { diff --git a/Plotly.Blazor/Traces/WaterfallLib/VisibleEnum.cs b/Plotly.Blazor/Traces/WaterfallLib/VisibleEnum.cs index bd7ce078..75946090 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/VisibleEnum.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/VisibleEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// trace is not drawn, but can appear as a legend item (provided that the legend /// itself is visible). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum VisibleEnum { diff --git a/Plotly.Blazor/Traces/WaterfallLib/XPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/WaterfallLib/XPeriodAlignmentEnum.cs index cb5d8f60..83b1a5c7 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/XPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/XPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the x axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum XPeriodAlignmentEnum { diff --git a/Plotly.Blazor/Traces/WaterfallLib/YPeriodAlignmentEnum.cs b/Plotly.Blazor/Traces/WaterfallLib/YPeriodAlignmentEnum.cs index 0df2310f..4e1de2ab 100644 --- a/Plotly.Blazor/Traces/WaterfallLib/YPeriodAlignmentEnum.cs +++ b/Plotly.Blazor/Traces/WaterfallLib/YPeriodAlignmentEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Traces.WaterfallLib /// Only relevant when the axis <c>type</c> is <c>date</c>. Sets the alignment /// of data points on the y axis. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum YPeriodAlignmentEnum { diff --git a/Plotly.Blazor/TransformTypeEnum.cs b/Plotly.Blazor/TransformTypeEnum.cs index a42bc92c..23013758 100644 --- a/Plotly.Blazor/TransformTypeEnum.cs +++ b/Plotly.Blazor/TransformTypeEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor /// <summary> /// Determines the type of the transform. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TransformTypeEnum { diff --git a/Plotly.Blazor/Transforms/Aggregate.cs b/Plotly.Blazor/Transforms/Aggregate.cs index 1dd8246c..5b759f5a 100644 --- a/Plotly.Blazor/Transforms/Aggregate.cs +++ b/Plotly.Blazor/Transforms/Aggregate.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Transforms /// The Aggregate class. /// Implements the <see cref="ITransform" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Aggregate : ITransform, IEquatable<Aggregate> diff --git a/Plotly.Blazor/Transforms/AggregateLib/Aggregation.cs b/Plotly.Blazor/Transforms/AggregateLib/Aggregation.cs index 1b49aa94..ddd2a104 100644 --- a/Plotly.Blazor/Transforms/AggregateLib/Aggregation.cs +++ b/Plotly.Blazor/Transforms/AggregateLib/Aggregation.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Transforms.AggregateLib /// <summary> /// The Aggregation class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Aggregation : IEquatable<Aggregation> { diff --git a/Plotly.Blazor/Transforms/AggregateLib/AggregationLib/FuncEnum.cs b/Plotly.Blazor/Transforms/AggregateLib/AggregationLib/FuncEnum.cs index cb2fe39a..c97f6175 100644 --- a/Plotly.Blazor/Transforms/AggregateLib/AggregationLib/FuncEnum.cs +++ b/Plotly.Blazor/Transforms/AggregateLib/AggregationLib/FuncEnum.cs @@ -24,7 +24,7 @@ namespace Plotly.Blazor.Transforms.AggregateLib.AggregationLib /// the first and last linked values. <c>range</c> will return the difference /// between the min and max linked values. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FuncEnum { diff --git a/Plotly.Blazor/Transforms/AggregateLib/AggregationLib/FuncModeEnum.cs b/Plotly.Blazor/Transforms/AggregateLib/AggregationLib/FuncModeEnum.cs index 9deac09e..4289ecd5 100644 --- a/Plotly.Blazor/Transforms/AggregateLib/AggregationLib/FuncModeEnum.cs +++ b/Plotly.Blazor/Transforms/AggregateLib/AggregationLib/FuncModeEnum.cs @@ -12,7 +12,7 @@ namespace Plotly.Blazor.Transforms.AggregateLib.AggregationLib /// <c>stddev</c> supports two formula variants: <c>sample</c> (normalize by /// N-1) and <c>population</c> (normalize by N). /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum FuncModeEnum { diff --git a/Plotly.Blazor/Transforms/Filter.cs b/Plotly.Blazor/Transforms/Filter.cs index 9947030b..5b5db5d3 100644 --- a/Plotly.Blazor/Transforms/Filter.cs +++ b/Plotly.Blazor/Transforms/Filter.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Transforms /// The Filter class. /// Implements the <see cref="ITransform" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Filter : ITransform, IEquatable<Filter> diff --git a/Plotly.Blazor/Transforms/FilterLib/OperationEnum.cs b/Plotly.Blazor/Transforms/FilterLib/OperationEnum.cs index de257342..8117113e 100644 --- a/Plotly.Blazor/Transforms/FilterLib/OperationEnum.cs +++ b/Plotly.Blazor/Transforms/FilterLib/OperationEnum.cs @@ -26,7 +26,7 @@ namespace Plotly.Blazor.Transforms.FilterLib /// <c>{}</c> keeps items present in a set of values <c>}{</c> keeps items not /// present in a set of values /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OperationEnum { diff --git a/Plotly.Blazor/Transforms/FilterLib/TargetCalendarEnum.cs b/Plotly.Blazor/Transforms/FilterLib/TargetCalendarEnum.cs index de6f328d..7518094c 100644 --- a/Plotly.Blazor/Transforms/FilterLib/TargetCalendarEnum.cs +++ b/Plotly.Blazor/Transforms/FilterLib/TargetCalendarEnum.cs @@ -15,7 +15,7 @@ namespace Plotly.Blazor.Transforms.FilterLib /// the corresponding trace attribute (eg <c>xcalendar</c>) if it exists, even /// if <c>targetcalendar</c> is provided. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum TargetCalendarEnum { diff --git a/Plotly.Blazor/Transforms/FilterLib/ValueCalendarEnum.cs b/Plotly.Blazor/Transforms/FilterLib/ValueCalendarEnum.cs index 169db322..5da9e197 100644 --- a/Plotly.Blazor/Transforms/FilterLib/ValueCalendarEnum.cs +++ b/Plotly.Blazor/Transforms/FilterLib/ValueCalendarEnum.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Transforms.FilterLib /// next major version. Sets the calendar system to use for <c>value</c>, if /// it is a date. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum ValueCalendarEnum { diff --git a/Plotly.Blazor/Transforms/GroupBy.cs b/Plotly.Blazor/Transforms/GroupBy.cs index 9bad9bb2..a004e2f1 100644 --- a/Plotly.Blazor/Transforms/GroupBy.cs +++ b/Plotly.Blazor/Transforms/GroupBy.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Transforms /// The GroupBy class. /// Implements the <see cref="ITransform" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class GroupBy : ITransform, IEquatable<GroupBy> { diff --git a/Plotly.Blazor/Transforms/GroupByLib/Style.cs b/Plotly.Blazor/Transforms/GroupByLib/Style.cs index cf76aceb..c4aea519 100644 --- a/Plotly.Blazor/Transforms/GroupByLib/Style.cs +++ b/Plotly.Blazor/Transforms/GroupByLib/Style.cs @@ -13,7 +13,7 @@ namespace Plotly.Blazor.Transforms.GroupByLib /// <summary> /// The Style class. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [Serializable] public class Style : IEquatable<Style> { diff --git a/Plotly.Blazor/Transforms/Sort.cs b/Plotly.Blazor/Transforms/Sort.cs index 82b0cec0..c0f77162 100644 --- a/Plotly.Blazor/Transforms/Sort.cs +++ b/Plotly.Blazor/Transforms/Sort.cs @@ -16,7 +16,7 @@ namespace Plotly.Blazor.Transforms /// The Sort class. /// Implements the <see cref="ITransform" />. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(PlotlyConverter))] [Serializable] public class Sort : ITransform, IEquatable<Sort> diff --git a/Plotly.Blazor/Transforms/SortLib/OrderEnum.cs b/Plotly.Blazor/Transforms/SortLib/OrderEnum.cs index 6d4f5654..88ecf7a5 100644 --- a/Plotly.Blazor/Transforms/SortLib/OrderEnum.cs +++ b/Plotly.Blazor/Transforms/SortLib/OrderEnum.cs @@ -11,7 +11,7 @@ namespace Plotly.Blazor.Transforms.SortLib /// <summary> /// Sets the sort transform order. /// </summary> - [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", "4.0.1.0")] + [System.CodeDom.Compiler.GeneratedCode("Plotly.Blazor.Generator", null)] [JsonConverter(typeof(EnumConverter))] public enum OrderEnum {