@@ -616,7 +616,6 @@ type Chart =
616
616
Chart.Range( x, y, upper, lower, ?Name= Name,? ShowMarkers= ShowMarkers,? Showlegend= Showlegend,? Color= Color,? RangeColor= RangeColor,? Labels= Labels,? TextPosition= TextPosition,? TextFont= TextFont)
617
617
618
618
619
-
620
619
/// Displays a range of data by plotting two Y values per data point, with each Y value being drawn as a line
621
620
static member Range ( x , y , upper , lower , mode ,
622
621
[<Optional; DefaultParameterValue( null ) >] ? Name ,
@@ -1463,11 +1462,13 @@ type Chart =
1463
1462
[<Optional; DefaultParameterValue( null ) >] ? Colorscale ,
1464
1463
[<Optional; DefaultParameterValue( null ) >] ? Colorbar ,
1465
1464
[<Optional; DefaultParameterValue( null ) >] ? Marker ,
1465
+ [<Optional; DefaultParameterValue( null ) >] ? GeoJson ,
1466
+ [<Optional; DefaultParameterValue( null ) >] ? FeatureIdKey : string ,
1466
1467
[<Optional; DefaultParameterValue( null ) >] ? Zmin ,
1467
1468
[<Optional; DefaultParameterValue( null ) >] ? Zmax ) =
1468
1469
Trace.initChoroplethMap (
1469
1470
TraceStyle.ChoroplethMap ( Locations= locations, Z= z,? Text= Text,? Locationmode= Locationmode,? Autocolorscale= Autocolorscale,
1470
- ?Colorscale= Colorscale,? Colorbar= Colorbar,? Marker= Marker,? Zmin= Zmin,? Zmax= Zmax)
1471
+ ?Colorscale= Colorscale,? Colorbar= Colorbar,? Marker= Marker,? Zmin= Zmin,? Zmax= Zmax,? GeoJson = GeoJson ,? FeatureIdKey = FeatureIdKey )
1471
1472
)
1472
1473
|> GenericChart.ofTraceObject
1473
1474
@@ -2223,20 +2224,22 @@ type Chart =
2223
2224
[<Optional; DefaultParameterValue( null ) >] ? Dash ,
2224
2225
[<Optional; DefaultParameterValue( null ) >] ? Width : float ,
2225
2226
[<Optional; DefaultParameterValue( null ) >] ? GeoJson ,
2227
+ [<Optional; DefaultParameterValue( null ) >] ? FeatureIdKey : string ,
2226
2228
[<Optional; DefaultParameterValue( null ) >] ? Connectgaps : bool ,
2227
2229
[<Optional; DefaultParameterValue( null ) >] ? Fill : StyleParam.Fill ,
2228
2230
[<Optional; DefaultParameterValue( null ) >] ? Fillcolor
2229
2231
) =
2230
2232
2231
2233
Trace.initScatterGeo(
2232
2234
TraceStyle.ScatterGeo(
2233
- mode = mode ,
2234
- Longitudes = longitudes ,
2235
- Latitudes = latitudes ,
2236
- ?GeoJson = GeoJson ,
2237
- ?Connectgaps= Connectgaps ,
2238
- ?Fill = Fill ,
2239
- ?Fillcolor = Fillcolor
2235
+ mode = mode ,
2236
+ Longitudes = longitudes ,
2237
+ Latitudes = latitudes ,
2238
+ ?GeoJson = GeoJson ,
2239
+ ?FeatureIdKey = FeatureIdKey ,
2240
+ ?Connectgaps = Connectgaps ,
2241
+ ?Fill = Fill ,
2242
+ ?Fillcolor = Fillcolor
2240
2243
)
2241
2244
)
2242
2245
|> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
@@ -2294,6 +2297,7 @@ type Chart =
2294
2297
[<Optional; DefaultParameterValue( null ) >] ? Dash ,
2295
2298
[<Optional; DefaultParameterValue( null ) >] ? Width : float ,
2296
2299
[<Optional; DefaultParameterValue( null ) >] ? GeoJson ,
2300
+ [<Optional; DefaultParameterValue( null ) >] ? FeatureIdKey : string ,
2297
2301
[<Optional; DefaultParameterValue( null ) >] ? Connectgaps : bool ,
2298
2302
[<Optional; DefaultParameterValue( null ) >] ? Fill : StyleParam.Fill ,
2299
2303
[<Optional; DefaultParameterValue( null ) >] ? Fillcolor
@@ -2302,13 +2306,14 @@ type Chart =
2302
2306
2303
2307
Trace.initScatterGeo(
2304
2308
TraceStyle.ScatterGeo(
2305
- mode = mode ,
2306
- Longitudes = longitudes ,
2307
- Latitudes = latitudes ,
2308
- ?GeoJson = GeoJson ,
2309
- ?Connectgaps= Connectgaps ,
2310
- ?Fill = Fill ,
2311
- ?Fillcolor = Fillcolor
2309
+ mode = mode ,
2310
+ Longitudes = longitudes ,
2311
+ Latitudes = latitudes ,
2312
+ ?GeoJson = GeoJson ,
2313
+ ?FeatureIdKey = FeatureIdKey ,
2314
+ ?Connectgaps = Connectgaps ,
2315
+ ?Fill = Fill ,
2316
+ ?Fillcolor = Fillcolor
2312
2317
)
2313
2318
)
2314
2319
|> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
@@ -2365,19 +2370,21 @@ type Chart =
2365
2370
[<Optional; DefaultParameterValue( null ) >] ? Dash ,
2366
2371
[<Optional; DefaultParameterValue( null ) >] ? Width : float ,
2367
2372
[<Optional; DefaultParameterValue( null ) >] ? GeoJson ,
2373
+ [<Optional; DefaultParameterValue( null ) >] ? FeatureIdKey : string ,
2368
2374
[<Optional; DefaultParameterValue( null ) >] ? Connectgaps : bool ,
2369
2375
[<Optional; DefaultParameterValue( null ) >] ? Fill : StyleParam.Fill ,
2370
2376
[<Optional; DefaultParameterValue( null ) >] ? Fillcolor
2371
2377
) =
2372
2378
2373
2379
Trace.initScatterGeo(
2374
2380
TraceStyle.ScatterGeo(
2375
- mode = mode ,
2376
- ?Locations = locations ,
2377
- ?GeoJson = GeoJson ,
2378
- ?Connectgaps= Connectgaps ,
2379
- ?Fill = Fill ,
2380
- ?Fillcolor = Fillcolor
2381
+ mode = mode ,
2382
+ ?Locations = locations ,
2383
+ ?GeoJson = GeoJson ,
2384
+ ?FeatureIdKey = FeatureIdKey ,
2385
+ ?Connectgaps = Connectgaps ,
2386
+ ?Fill = Fill ,
2387
+ ?Fillcolor = Fillcolor
2381
2388
)
2382
2389
)
2383
2390
|> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
@@ -2427,6 +2434,7 @@ type Chart =
2427
2434
[<Optional; DefaultParameterValue( null ) >] ? TextPosition ,
2428
2435
[<Optional; DefaultParameterValue( null ) >] ? TextFont ,
2429
2436
[<Optional; DefaultParameterValue( null ) >] ? GeoJson ,
2437
+ [<Optional; DefaultParameterValue( null ) >] ? FeatureIdKey : string ,
2430
2438
[<Optional; DefaultParameterValue( null ) >] ? Connectgaps : bool ,
2431
2439
[<Optional; DefaultParameterValue( null ) >] ? Fill : StyleParam.Fill ,
2432
2440
[<Optional; DefaultParameterValue( null ) >] ? Fillcolor
@@ -2436,13 +2444,14 @@ type Chart =
2436
2444
2437
2445
Trace.initScatterGeo(
2438
2446
TraceStyle.ScatterGeo(
2439
- mode = changeMode StyleParam.Mode.Markers ,
2440
- Longitudes = longitudes ,
2441
- Latitudes = latitudes ,
2442
- ?GeoJson = GeoJson ,
2443
- ?Connectgaps= Connectgaps ,
2444
- ?Fill = Fill ,
2445
- ?Fillcolor = Fillcolor
2447
+ mode = changeMode StyleParam.Mode.Markers ,
2448
+ Longitudes = longitudes ,
2449
+ Latitudes = latitudes ,
2450
+ ?GeoJson = GeoJson ,
2451
+ ?FeatureIdKey = FeatureIdKey ,
2452
+ ?Connectgaps = Connectgaps ,
2453
+ ?Fill = Fill ,
2454
+ ?Fillcolor = Fillcolor
2446
2455
)
2447
2456
)
2448
2457
|> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
@@ -2489,6 +2498,7 @@ type Chart =
2489
2498
[<Optional; DefaultParameterValue( null ) >] ? TextPosition ,
2490
2499
[<Optional; DefaultParameterValue( null ) >] ? TextFont ,
2491
2500
[<Optional; DefaultParameterValue( null ) >] ? GeoJson ,
2501
+ [<Optional; DefaultParameterValue( null ) >] ? FeatureIdKey : string ,
2492
2502
[<Optional; DefaultParameterValue( null ) >] ? Connectgaps : bool ,
2493
2503
[<Optional; DefaultParameterValue( null ) >] ? Fill : StyleParam.Fill ,
2494
2504
[<Optional; DefaultParameterValue( null ) >] ? Fillcolor
@@ -2499,13 +2509,14 @@ type Chart =
2499
2509
2500
2510
Trace.initScatterGeo(
2501
2511
TraceStyle.ScatterGeo(
2502
- mode = changeMode StyleParam.Mode.Markers ,
2503
- Longitudes = longitudes ,
2504
- Latitudes = latitudes ,
2505
- ?GeoJson = GeoJson ,
2506
- ?Connectgaps= Connectgaps ,
2507
- ?Fill = Fill ,
2508
- ?Fillcolor = Fillcolor
2512
+ mode = changeMode StyleParam.Mode.Markers ,
2513
+ Longitudes = longitudes ,
2514
+ Latitudes = latitudes ,
2515
+ ?GeoJson = GeoJson ,
2516
+ ?FeatureIdKey = FeatureIdKey ,
2517
+ ?Connectgaps = Connectgaps ,
2518
+ ?Fill = Fill ,
2519
+ ?Fillcolor = Fillcolor
2509
2520
)
2510
2521
)
2511
2522
|> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
@@ -2552,6 +2563,7 @@ type Chart =
2552
2563
[<Optional; DefaultParameterValue( null ) >] ? TextPosition ,
2553
2564
[<Optional; DefaultParameterValue( null ) >] ? TextFont ,
2554
2565
[<Optional; DefaultParameterValue( null ) >] ? GeoJson ,
2566
+ [<Optional; DefaultParameterValue( null ) >] ? FeatureIdKey : string ,
2555
2567
[<Optional; DefaultParameterValue( null ) >] ? Connectgaps : bool ,
2556
2568
[<Optional; DefaultParameterValue( null ) >] ? Fill : StyleParam.Fill ,
2557
2569
[<Optional; DefaultParameterValue( null ) >] ? Fillcolor
@@ -2624,6 +2636,7 @@ type Chart =
2624
2636
[<Optional; DefaultParameterValue( null ) >] ? TextPosition ,
2625
2637
[<Optional; DefaultParameterValue( null ) >] ? TextFont ,
2626
2638
[<Optional; DefaultParameterValue( null ) >] ? GeoJson ,
2639
+ [<Optional; DefaultParameterValue( null ) >] ? FeatureIdKey : string ,
2627
2640
[<Optional; DefaultParameterValue( null ) >] ? Connectgaps : bool ,
2628
2641
[<Optional; DefaultParameterValue( null ) >] ? Fill : StyleParam.Fill ,
2629
2642
[<Optional; DefaultParameterValue( null ) >] ? Fillcolor
@@ -2639,13 +2652,14 @@ type Chart =
2639
2652
2640
2653
Trace.initScatterGeo(
2641
2654
TraceStyle.ScatterGeo(
2642
- mode = changeMode StyleParam.Mode.Lines,
2643
- Longitudes = longitudes ,
2644
- Latitudes = latitudes ,
2645
- ?GeoJson = GeoJson ,
2646
- ?Connectgaps= Connectgaps ,
2647
- ?Fill = Fill ,
2648
- ?Fillcolor = Fillcolor
2655
+ mode = changeMode StyleParam.Mode.Lines,
2656
+ Longitudes = longitudes ,
2657
+ Latitudes = latitudes ,
2658
+ ?GeoJson = GeoJson ,
2659
+ ?FeatureIdKey = FeatureIdKey ,
2660
+ ?Connectgaps = Connectgaps ,
2661
+ ?Fill = Fill ,
2662
+ ?Fillcolor = Fillcolor
2649
2663
)
2650
2664
)
2651
2665
|> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
@@ -2697,6 +2711,7 @@ type Chart =
2697
2711
[<Optional; DefaultParameterValue( null ) >] ? TextPosition ,
2698
2712
[<Optional; DefaultParameterValue( null ) >] ? TextFont ,
2699
2713
[<Optional; DefaultParameterValue( null ) >] ? GeoJson ,
2714
+ [<Optional; DefaultParameterValue( null ) >] ? FeatureIdKey : string ,
2700
2715
[<Optional; DefaultParameterValue( null ) >] ? Connectgaps : bool ,
2701
2716
[<Optional; DefaultParameterValue( null ) >] ? Fill : StyleParam.Fill ,
2702
2717
[<Optional; DefaultParameterValue( null ) >] ? Fillcolor
@@ -2713,13 +2728,14 @@ type Chart =
2713
2728
2714
2729
Trace.initScatterGeo(
2715
2730
TraceStyle.ScatterGeo(
2716
- mode = changeMode StyleParam.Mode.Lines,
2717
- Longitudes = longitudes ,
2718
- Latitudes = latitudes ,
2719
- ?GeoJson = GeoJson ,
2720
- ?Connectgaps= Connectgaps ,
2721
- ?Fill = Fill ,
2722
- ?Fillcolor = Fillcolor
2731
+ mode = changeMode StyleParam.Mode.Lines,
2732
+ Longitudes = longitudes ,
2733
+ Latitudes = latitudes ,
2734
+ ?GeoJson = GeoJson ,
2735
+ ?FeatureIdKey = FeatureIdKey ,
2736
+ ?Connectgaps = Connectgaps ,
2737
+ ?Fill = Fill ,
2738
+ ?Fillcolor = Fillcolor
2723
2739
)
2724
2740
)
2725
2741
|> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
@@ -2771,6 +2787,7 @@ type Chart =
2771
2787
[<Optional; DefaultParameterValue( null ) >] ? TextPosition ,
2772
2788
[<Optional; DefaultParameterValue( null ) >] ? TextFont ,
2773
2789
[<Optional; DefaultParameterValue( null ) >] ? GeoJson ,
2790
+ [<Optional; DefaultParameterValue( null ) >] ? FeatureIdKey : string ,
2774
2791
[<Optional; DefaultParameterValue( null ) >] ? Connectgaps : bool ,
2775
2792
[<Optional; DefaultParameterValue( null ) >] ? Fill : StyleParam.Fill ,
2776
2793
[<Optional; DefaultParameterValue( null ) >] ? Fillcolor
@@ -2786,12 +2803,13 @@ type Chart =
2786
2803
2787
2804
Trace.initScatterGeo(
2788
2805
TraceStyle.ScatterGeo(
2789
- mode = changeMode StyleParam.Mode.Lines,
2790
- Locations = locations ,
2791
- ?GeoJson = GeoJson ,
2792
- ?Connectgaps= Connectgaps ,
2793
- ?Fill = Fill ,
2794
- ?Fillcolor = Fillcolor
2806
+ mode = changeMode StyleParam.Mode.Lines,
2807
+ Locations = locations ,
2808
+ ?GeoJson = GeoJson ,
2809
+ ?FeatureIdKey = FeatureIdKey ,
2810
+ ?Connectgaps = Connectgaps ,
2811
+ ?Fill = Fill ,
2812
+ ?Fillcolor = Fillcolor
2795
2813
)
2796
2814
)
2797
2815
|> TraceStyle.TraceInfo( ?Name= Name,? Showlegend= Showlegend,? Opacity= Opacity)
0 commit comments