@eclipse-scout/chart 22.0.29 → 22.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eclipse-scout-chart-0677e5a0d5ac4456cdf5.min.js +3 -0
- package/dist/{eclipse-scout-chart-4ad3082843cacd9fd867.min.js.LICENSE.txt → eclipse-scout-chart-0677e5a0d5ac4456cdf5.min.js.LICENSE.txt} +0 -0
- package/dist/eclipse-scout-chart-0677e5a0d5ac4456cdf5.min.js.map +1 -0
- package/dist/eclipse-scout-chart-theme-79622289bda68b525e3e.min.css +1 -0
- package/dist/eclipse-scout-chart-theme-dark-1de09c03e3dc40a9529a.min.css +1 -0
- package/dist/eclipse-scout-chart-theme-dark.css +528 -242
- package/dist/eclipse-scout-chart-theme-dark.css.map +1 -1
- package/dist/eclipse-scout-chart-theme.css +528 -242
- package/dist/eclipse-scout-chart-theme.css.map +1 -1
- package/dist/eclipse-scout-chart.js +210 -83
- package/dist/eclipse-scout-chart.js.map +1 -1
- package/dist/file-list +5 -5
- package/package.json +3 -3
- package/src/chart/Chart.js +4 -2
- package/src/chart/Chart.less +60 -4
- package/src/chart/ChartJsRenderer.js +196 -77
- package/dist/eclipse-scout-chart-4ad3082843cacd9fd867.min.js +0 -3
- package/dist/eclipse-scout-chart-4ad3082843cacd9fd867.min.js.map +0 -1
- package/dist/eclipse-scout-chart-theme-4801a2aff3179586b17c.min.css +0 -1
- package/dist/eclipse-scout-chart-theme-dark-7429dc23c823152027f3.min.css +0 -1
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
33
33
|
*/
|
|
34
34
|
/*
|
|
35
|
-
* Copyright (c) 2010-
|
|
35
|
+
* Copyright (c) 2010-2022 BSI Business Systems Integration AG.
|
|
36
36
|
* All rights reserved. This program and the accompanying materials
|
|
37
37
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
38
38
|
* which accompanies this distribution, and is available at
|
|
39
|
-
*
|
|
39
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
40
40
|
*
|
|
41
41
|
* Contributors:
|
|
42
42
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -3434,726 +3434,968 @@
|
|
|
3434
3434
|
.color-rainbow .radar-chart > .elements .color5.legend {
|
|
3435
3435
|
fill: #00856c;
|
|
3436
3436
|
}
|
|
3437
|
-
.bubble-chart
|
|
3437
|
+
.bubble-chart,
|
|
3438
|
+
.scatter-chart {
|
|
3438
3439
|
min-width: 75px;
|
|
3439
3440
|
}
|
|
3440
|
-
.bubble-chart > .elements
|
|
3441
|
+
.bubble-chart > .elements,
|
|
3442
|
+
.scatter-chart > .elements {
|
|
3441
3443
|
fill: #1561A7;
|
|
3442
3444
|
}
|
|
3443
|
-
.bubble-chart > .elements > .label
|
|
3445
|
+
.bubble-chart > .elements > .label,
|
|
3446
|
+
.scatter-chart > .elements > .label {
|
|
3444
3447
|
fill: #666666;
|
|
3445
3448
|
}
|
|
3446
|
-
.inverted > .bubble-chart > .elements > .label
|
|
3449
|
+
.inverted > .bubble-chart > .elements > .label,
|
|
3450
|
+
.inverted > .scatter-chart > .elements > .label {
|
|
3447
3451
|
fill: #fff;
|
|
3448
3452
|
}
|
|
3449
|
-
.bubble-chart > .elements > .datalabel
|
|
3453
|
+
.bubble-chart > .elements > .datalabel,
|
|
3454
|
+
.scatter-chart > .elements > .datalabel {
|
|
3450
3455
|
fill: #fff;
|
|
3451
3456
|
}
|
|
3452
|
-
.bubble-chart > .elements > .axis-label
|
|
3457
|
+
.bubble-chart > .elements > .axis-label,
|
|
3458
|
+
.scatter-chart > .elements > .axis-label {
|
|
3453
3459
|
fill: #666666;
|
|
3454
3460
|
}
|
|
3455
|
-
.inverted > .bubble-chart > .elements > .axis-label
|
|
3461
|
+
.inverted > .bubble-chart > .elements > .axis-label,
|
|
3462
|
+
.inverted > .scatter-chart > .elements > .axis-label {
|
|
3456
3463
|
fill: #fff;
|
|
3457
3464
|
}
|
|
3458
3465
|
.bubble-chart > .elements > .grid,
|
|
3459
|
-
.
|
|
3466
|
+
.scatter-chart > .elements > .grid,
|
|
3467
|
+
.bubble-chart > .elements > .scale-ticks,
|
|
3468
|
+
.scatter-chart > .elements > .scale-ticks {
|
|
3460
3469
|
fill: #DADADA;
|
|
3461
3470
|
}
|
|
3462
3471
|
.inverted > .bubble-chart > .elements > .grid,
|
|
3463
|
-
.inverted > .
|
|
3472
|
+
.inverted > .scatter-chart > .elements > .grid,
|
|
3473
|
+
.inverted > .bubble-chart > .elements > .scale-ticks,
|
|
3474
|
+
.inverted > .scatter-chart > .elements > .scale-ticks {
|
|
3464
3475
|
fill: rgba(218, 218, 218, 0.3);
|
|
3465
3476
|
}
|
|
3466
|
-
.bubble-chart > .elements .color0
|
|
3477
|
+
.bubble-chart > .elements .color0,
|
|
3478
|
+
.scatter-chart > .elements .color0 {
|
|
3467
3479
|
fill: rgba(21, 97, 167, 0.2);
|
|
3468
3480
|
}
|
|
3469
|
-
.bubble-chart > .elements .color1
|
|
3481
|
+
.bubble-chart > .elements .color1,
|
|
3482
|
+
.scatter-chart > .elements .color1 {
|
|
3470
3483
|
fill: rgba(24, 110, 190, 0.2);
|
|
3471
3484
|
}
|
|
3472
|
-
.bubble-chart > .elements .color2
|
|
3485
|
+
.bubble-chart > .elements .color2,
|
|
3486
|
+
.scatter-chart > .elements .color2 {
|
|
3473
3487
|
fill: rgba(116, 168, 216, 0.2);
|
|
3474
3488
|
}
|
|
3475
|
-
.bubble-chart > .elements .color3
|
|
3489
|
+
.bubble-chart > .elements .color3,
|
|
3490
|
+
.scatter-chart > .elements .color3 {
|
|
3476
3491
|
fill: rgba(193, 222, 249, 0.2);
|
|
3477
3492
|
}
|
|
3478
|
-
.bubble-chart > .elements .color4
|
|
3493
|
+
.bubble-chart > .elements .color4,
|
|
3494
|
+
.scatter-chart > .elements .color4 {
|
|
3479
3495
|
fill: rgba(1, 71, 134, 0.2);
|
|
3480
3496
|
}
|
|
3481
|
-
.bubble-chart > .elements .color5
|
|
3497
|
+
.bubble-chart > .elements .color5,
|
|
3498
|
+
.scatter-chart > .elements .color5 {
|
|
3482
3499
|
fill: rgba(47, 60, 69, 0.2);
|
|
3483
3500
|
}
|
|
3484
|
-
.inverted .bubble-chart > .elements
|
|
3501
|
+
.inverted .bubble-chart > .elements,
|
|
3502
|
+
.inverted .scatter-chart > .elements {
|
|
3485
3503
|
fill: #C1DEF9;
|
|
3486
3504
|
}
|
|
3487
|
-
.inverted .bubble-chart > .elements .color0
|
|
3505
|
+
.inverted .bubble-chart > .elements .color0,
|
|
3506
|
+
.inverted .scatter-chart > .elements .color0 {
|
|
3488
3507
|
fill: rgba(193, 222, 249, 0.2);
|
|
3489
3508
|
}
|
|
3490
|
-
.inverted .bubble-chart > .elements .color1
|
|
3509
|
+
.inverted .bubble-chart > .elements .color1,
|
|
3510
|
+
.inverted .scatter-chart > .elements .color1 {
|
|
3491
3511
|
fill: rgba(147, 197, 244, 0.2);
|
|
3492
3512
|
}
|
|
3493
|
-
.inverted .bubble-chart > .elements .color2
|
|
3513
|
+
.inverted .bubble-chart > .elements .color2,
|
|
3514
|
+
.inverted .scatter-chart > .elements .color2 {
|
|
3494
3515
|
fill: rgba(116, 168, 216, 0.2);
|
|
3495
3516
|
}
|
|
3496
|
-
.inverted .bubble-chart > .elements .color3
|
|
3517
|
+
.inverted .bubble-chart > .elements .color3,
|
|
3518
|
+
.inverted .scatter-chart > .elements .color3 {
|
|
3497
3519
|
fill: rgba(76, 143, 205, 0.2);
|
|
3498
3520
|
}
|
|
3499
|
-
.inverted .bubble-chart > .elements .color4
|
|
3521
|
+
.inverted .bubble-chart > .elements .color4,
|
|
3522
|
+
.inverted .scatter-chart > .elements .color4 {
|
|
3500
3523
|
fill: rgba(1, 71, 134, 0.2);
|
|
3501
3524
|
}
|
|
3502
|
-
.inverted .bubble-chart > .elements .color5
|
|
3525
|
+
.inverted .bubble-chart > .elements .color5,
|
|
3526
|
+
.inverted .scatter-chart > .elements .color5 {
|
|
3503
3527
|
fill: rgba(47, 60, 69, 0.2);
|
|
3504
3528
|
}
|
|
3505
|
-
.color-alternative .bubble-chart > .elements
|
|
3529
|
+
.color-alternative .bubble-chart > .elements,
|
|
3530
|
+
.color-alternative .scatter-chart > .elements {
|
|
3506
3531
|
fill: #0DA98C;
|
|
3507
3532
|
}
|
|
3508
|
-
.color-alternative .bubble-chart > .elements .color0
|
|
3533
|
+
.color-alternative .bubble-chart > .elements .color0,
|
|
3534
|
+
.color-alternative .scatter-chart > .elements .color0 {
|
|
3509
3535
|
fill: rgba(13, 169, 140, 0.2);
|
|
3510
3536
|
}
|
|
3511
|
-
.color-alternative .bubble-chart > .elements .color1
|
|
3537
|
+
.color-alternative .bubble-chart > .elements .color1,
|
|
3538
|
+
.color-alternative .scatter-chart > .elements .color1 {
|
|
3512
3539
|
fill: rgba(15, 193, 160, 0.2);
|
|
3513
3540
|
}
|
|
3514
|
-
.color-alternative .bubble-chart > .elements .color2
|
|
3541
|
+
.color-alternative .bubble-chart > .elements .color2,
|
|
3542
|
+
.color-alternative .scatter-chart > .elements .color2 {
|
|
3515
3543
|
fill: rgba(31, 201, 170, 0.2);
|
|
3516
3544
|
}
|
|
3517
|
-
.color-alternative .bubble-chart > .elements .color3
|
|
3545
|
+
.color-alternative .bubble-chart > .elements .color3,
|
|
3546
|
+
.color-alternative .scatter-chart > .elements .color3 {
|
|
3518
3547
|
fill: rgba(103, 233, 209, 0.2);
|
|
3519
3548
|
}
|
|
3520
|
-
.color-alternative .bubble-chart > .elements .color4
|
|
3549
|
+
.color-alternative .bubble-chart > .elements .color4,
|
|
3550
|
+
.color-alternative .scatter-chart > .elements .color4 {
|
|
3521
3551
|
fill: rgba(189, 242, 232, 0.2);
|
|
3522
3552
|
}
|
|
3523
|
-
.color-alternative .bubble-chart > .elements .color5
|
|
3553
|
+
.color-alternative .bubble-chart > .elements .color5,
|
|
3554
|
+
.color-alternative .scatter-chart > .elements .color5 {
|
|
3524
3555
|
fill: rgba(0, 133, 108, 0.2);
|
|
3525
3556
|
}
|
|
3526
|
-
.color-alternative.inverted .bubble-chart > .elements
|
|
3557
|
+
.color-alternative.inverted .bubble-chart > .elements,
|
|
3558
|
+
.color-alternative.inverted .scatter-chart > .elements {
|
|
3527
3559
|
fill: #BDF2E8;
|
|
3528
3560
|
}
|
|
3529
|
-
.color-alternative.inverted .bubble-chart > .elements .color0
|
|
3561
|
+
.color-alternative.inverted .bubble-chart > .elements .color0,
|
|
3562
|
+
.color-alternative.inverted .scatter-chart > .elements .color0 {
|
|
3530
3563
|
fill: rgba(189, 242, 232, 0.2);
|
|
3531
3564
|
}
|
|
3532
|
-
.color-alternative.inverted .bubble-chart > .elements .color1
|
|
3565
|
+
.color-alternative.inverted .bubble-chart > .elements .color1,
|
|
3566
|
+
.color-alternative.inverted .scatter-chart > .elements .color1 {
|
|
3533
3567
|
fill: rgba(103, 233, 209, 0.2);
|
|
3534
3568
|
}
|
|
3535
|
-
.color-alternative.inverted .bubble-chart > .elements .color2
|
|
3569
|
+
.color-alternative.inverted .bubble-chart > .elements .color2,
|
|
3570
|
+
.color-alternative.inverted .scatter-chart > .elements .color2 {
|
|
3536
3571
|
fill: rgba(31, 201, 170, 0.2);
|
|
3537
3572
|
}
|
|
3538
|
-
.color-alternative.inverted .bubble-chart > .elements .color3
|
|
3573
|
+
.color-alternative.inverted .bubble-chart > .elements .color3,
|
|
3574
|
+
.color-alternative.inverted .scatter-chart > .elements .color3 {
|
|
3539
3575
|
fill: rgba(13, 169, 140, 0.2);
|
|
3540
3576
|
}
|
|
3541
|
-
.color-alternative.inverted .bubble-chart > .elements .color4
|
|
3577
|
+
.color-alternative.inverted .bubble-chart > .elements .color4,
|
|
3578
|
+
.color-alternative.inverted .scatter-chart > .elements .color4 {
|
|
3542
3579
|
fill: rgba(0, 133, 108, 0.2);
|
|
3543
3580
|
}
|
|
3544
|
-
.color-alternative.inverted .bubble-chart > .elements .color5
|
|
3581
|
+
.color-alternative.inverted .bubble-chart > .elements .color5,
|
|
3582
|
+
.color-alternative.inverted .scatter-chart > .elements .color5 {
|
|
3545
3583
|
fill: rgba(0, 82, 67, 0.2);
|
|
3546
3584
|
}
|
|
3547
|
-
.color-rainbow .bubble-chart > .elements
|
|
3585
|
+
.color-rainbow .bubble-chart > .elements,
|
|
3586
|
+
.color-rainbow .scatter-chart > .elements {
|
|
3548
3587
|
fill: #1561A7;
|
|
3549
3588
|
}
|
|
3550
|
-
.color-rainbow .bubble-chart > .elements .color0
|
|
3589
|
+
.color-rainbow .bubble-chart > .elements .color0,
|
|
3590
|
+
.color-rainbow .scatter-chart > .elements .color0 {
|
|
3551
3591
|
fill: rgba(21, 97, 167, 0.2);
|
|
3552
3592
|
}
|
|
3553
|
-
.color-rainbow .bubble-chart > .elements .color1
|
|
3593
|
+
.color-rainbow .bubble-chart > .elements .color1,
|
|
3594
|
+
.color-rainbow .scatter-chart > .elements .color1 {
|
|
3554
3595
|
fill: rgba(254, 153, 21, 0.2);
|
|
3555
3596
|
}
|
|
3556
|
-
.color-rainbow .bubble-chart > .elements .color2
|
|
3597
|
+
.color-rainbow .bubble-chart > .elements .color2,
|
|
3598
|
+
.color-rainbow .scatter-chart > .elements .color2 {
|
|
3557
3599
|
fill: rgba(31, 201, 170, 0.2);
|
|
3558
3600
|
}
|
|
3559
|
-
.color-rainbow .bubble-chart > .elements .color3
|
|
3601
|
+
.color-rainbow .bubble-chart > .elements .color3,
|
|
3602
|
+
.color-rainbow .scatter-chart > .elements .color3 {
|
|
3560
3603
|
fill: rgba(102, 102, 102, 0.2);
|
|
3561
3604
|
}
|
|
3562
|
-
.color-rainbow .bubble-chart > .elements .color4
|
|
3605
|
+
.color-rainbow .bubble-chart > .elements .color4,
|
|
3606
|
+
.color-rainbow .scatter-chart > .elements .color4 {
|
|
3563
3607
|
fill: rgba(255, 85, 85, 0.2);
|
|
3564
3608
|
}
|
|
3565
|
-
.color-rainbow .bubble-chart > .elements .color5
|
|
3609
|
+
.color-rainbow .bubble-chart > .elements .color5,
|
|
3610
|
+
.color-rainbow .scatter-chart > .elements .color5 {
|
|
3566
3611
|
fill: rgba(0, 133, 108, 0.2);
|
|
3567
3612
|
}
|
|
3568
|
-
.bubble-chart > .elements .stroke-color0
|
|
3613
|
+
.bubble-chart > .elements .stroke-color0,
|
|
3614
|
+
.scatter-chart > .elements .stroke-color0 {
|
|
3569
3615
|
stroke: #1561a7;
|
|
3570
3616
|
}
|
|
3571
|
-
.bubble-chart > .elements .stroke-color1
|
|
3617
|
+
.bubble-chart > .elements .stroke-color1,
|
|
3618
|
+
.scatter-chart > .elements .stroke-color1 {
|
|
3572
3619
|
stroke: #186ebe;
|
|
3573
3620
|
}
|
|
3574
|
-
.bubble-chart > .elements .stroke-color2
|
|
3621
|
+
.bubble-chart > .elements .stroke-color2,
|
|
3622
|
+
.scatter-chart > .elements .stroke-color2 {
|
|
3575
3623
|
stroke: #74a8d8;
|
|
3576
3624
|
}
|
|
3577
|
-
.bubble-chart > .elements .stroke-color3
|
|
3625
|
+
.bubble-chart > .elements .stroke-color3,
|
|
3626
|
+
.scatter-chart > .elements .stroke-color3 {
|
|
3578
3627
|
stroke: #c1def9;
|
|
3579
3628
|
}
|
|
3580
|
-
.bubble-chart > .elements .stroke-color4
|
|
3629
|
+
.bubble-chart > .elements .stroke-color4,
|
|
3630
|
+
.scatter-chart > .elements .stroke-color4 {
|
|
3581
3631
|
stroke: #014786;
|
|
3582
3632
|
}
|
|
3583
|
-
.bubble-chart > .elements .stroke-color5
|
|
3633
|
+
.bubble-chart > .elements .stroke-color5,
|
|
3634
|
+
.scatter-chart > .elements .stroke-color5 {
|
|
3584
3635
|
stroke: #2f3c45;
|
|
3585
3636
|
}
|
|
3586
|
-
.inverted .bubble-chart > .elements .stroke-color0
|
|
3637
|
+
.inverted .bubble-chart > .elements .stroke-color0,
|
|
3638
|
+
.inverted .scatter-chart > .elements .stroke-color0 {
|
|
3587
3639
|
stroke: #c1def9;
|
|
3588
3640
|
}
|
|
3589
|
-
.inverted .bubble-chart > .elements .stroke-color1
|
|
3641
|
+
.inverted .bubble-chart > .elements .stroke-color1,
|
|
3642
|
+
.inverted .scatter-chart > .elements .stroke-color1 {
|
|
3590
3643
|
stroke: #93c5f4;
|
|
3591
3644
|
}
|
|
3592
|
-
.inverted .bubble-chart > .elements .stroke-color2
|
|
3645
|
+
.inverted .bubble-chart > .elements .stroke-color2,
|
|
3646
|
+
.inverted .scatter-chart > .elements .stroke-color2 {
|
|
3593
3647
|
stroke: #74a8d8;
|
|
3594
3648
|
}
|
|
3595
|
-
.inverted .bubble-chart > .elements .stroke-color3
|
|
3649
|
+
.inverted .bubble-chart > .elements .stroke-color3,
|
|
3650
|
+
.inverted .scatter-chart > .elements .stroke-color3 {
|
|
3596
3651
|
stroke: #4c8fcd;
|
|
3597
3652
|
}
|
|
3598
|
-
.inverted .bubble-chart > .elements .stroke-color4
|
|
3653
|
+
.inverted .bubble-chart > .elements .stroke-color4,
|
|
3654
|
+
.inverted .scatter-chart > .elements .stroke-color4 {
|
|
3599
3655
|
stroke: #014786;
|
|
3600
3656
|
}
|
|
3601
|
-
.inverted .bubble-chart > .elements .stroke-color5
|
|
3657
|
+
.inverted .bubble-chart > .elements .stroke-color5,
|
|
3658
|
+
.inverted .scatter-chart > .elements .stroke-color5 {
|
|
3602
3659
|
stroke: #2f3c45;
|
|
3603
3660
|
}
|
|
3604
|
-
.color-alternative .bubble-chart > .elements .stroke-color0
|
|
3661
|
+
.color-alternative .bubble-chart > .elements .stroke-color0,
|
|
3662
|
+
.color-alternative .scatter-chart > .elements .stroke-color0 {
|
|
3605
3663
|
stroke: #0da98c;
|
|
3606
3664
|
}
|
|
3607
|
-
.color-alternative .bubble-chart > .elements .stroke-color1
|
|
3665
|
+
.color-alternative .bubble-chart > .elements .stroke-color1,
|
|
3666
|
+
.color-alternative .scatter-chart > .elements .stroke-color1 {
|
|
3608
3667
|
stroke: #0fc1a0;
|
|
3609
3668
|
}
|
|
3610
|
-
.color-alternative .bubble-chart > .elements .stroke-color2
|
|
3669
|
+
.color-alternative .bubble-chart > .elements .stroke-color2,
|
|
3670
|
+
.color-alternative .scatter-chart > .elements .stroke-color2 {
|
|
3611
3671
|
stroke: #1fc9aa;
|
|
3612
3672
|
}
|
|
3613
|
-
.color-alternative .bubble-chart > .elements .stroke-color3
|
|
3673
|
+
.color-alternative .bubble-chart > .elements .stroke-color3,
|
|
3674
|
+
.color-alternative .scatter-chart > .elements .stroke-color3 {
|
|
3614
3675
|
stroke: #67e9d1;
|
|
3615
3676
|
}
|
|
3616
|
-
.color-alternative .bubble-chart > .elements .stroke-color4
|
|
3677
|
+
.color-alternative .bubble-chart > .elements .stroke-color4,
|
|
3678
|
+
.color-alternative .scatter-chart > .elements .stroke-color4 {
|
|
3617
3679
|
stroke: #bdf2e8;
|
|
3618
3680
|
}
|
|
3619
|
-
.color-alternative .bubble-chart > .elements .stroke-color5
|
|
3681
|
+
.color-alternative .bubble-chart > .elements .stroke-color5,
|
|
3682
|
+
.color-alternative .scatter-chart > .elements .stroke-color5 {
|
|
3620
3683
|
stroke: #00856c;
|
|
3621
3684
|
}
|
|
3622
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color0
|
|
3685
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color0,
|
|
3686
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color0 {
|
|
3623
3687
|
stroke: #bdf2e8;
|
|
3624
3688
|
}
|
|
3625
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color1
|
|
3689
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color1,
|
|
3690
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color1 {
|
|
3626
3691
|
stroke: #67e9d1;
|
|
3627
3692
|
}
|
|
3628
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color2
|
|
3693
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color2,
|
|
3694
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color2 {
|
|
3629
3695
|
stroke: #1fc9aa;
|
|
3630
3696
|
}
|
|
3631
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color3
|
|
3697
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color3,
|
|
3698
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color3 {
|
|
3632
3699
|
stroke: #0da98c;
|
|
3633
3700
|
}
|
|
3634
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color4
|
|
3701
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color4,
|
|
3702
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color4 {
|
|
3635
3703
|
stroke: #00856c;
|
|
3636
3704
|
}
|
|
3637
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color5
|
|
3705
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color5,
|
|
3706
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color5 {
|
|
3638
3707
|
stroke: #005243;
|
|
3639
3708
|
}
|
|
3640
|
-
.color-rainbow .bubble-chart > .elements .stroke-color0
|
|
3709
|
+
.color-rainbow .bubble-chart > .elements .stroke-color0,
|
|
3710
|
+
.color-rainbow .scatter-chart > .elements .stroke-color0 {
|
|
3641
3711
|
stroke: #1561a7;
|
|
3642
3712
|
}
|
|
3643
|
-
.color-rainbow .bubble-chart > .elements .stroke-color1
|
|
3713
|
+
.color-rainbow .bubble-chart > .elements .stroke-color1,
|
|
3714
|
+
.color-rainbow .scatter-chart > .elements .stroke-color1 {
|
|
3644
3715
|
stroke: #fe9915;
|
|
3645
3716
|
}
|
|
3646
|
-
.color-rainbow .bubble-chart > .elements .stroke-color2
|
|
3717
|
+
.color-rainbow .bubble-chart > .elements .stroke-color2,
|
|
3718
|
+
.color-rainbow .scatter-chart > .elements .stroke-color2 {
|
|
3647
3719
|
stroke: #1fc9aa;
|
|
3648
3720
|
}
|
|
3649
|
-
.color-rainbow .bubble-chart > .elements .stroke-color3
|
|
3721
|
+
.color-rainbow .bubble-chart > .elements .stroke-color3,
|
|
3722
|
+
.color-rainbow .scatter-chart > .elements .stroke-color3 {
|
|
3650
3723
|
stroke: #666666;
|
|
3651
3724
|
}
|
|
3652
|
-
.color-rainbow .bubble-chart > .elements .stroke-color4
|
|
3725
|
+
.color-rainbow .bubble-chart > .elements .stroke-color4,
|
|
3726
|
+
.color-rainbow .scatter-chart > .elements .stroke-color4 {
|
|
3653
3727
|
stroke: #ff5555;
|
|
3654
3728
|
}
|
|
3655
|
-
.color-rainbow .bubble-chart > .elements .stroke-color5
|
|
3729
|
+
.color-rainbow .bubble-chart > .elements .stroke-color5,
|
|
3730
|
+
.color-rainbow .scatter-chart > .elements .stroke-color5 {
|
|
3656
3731
|
stroke: #00856c;
|
|
3657
3732
|
}
|
|
3658
|
-
.bubble-chart > .elements .color0.hover
|
|
3733
|
+
.bubble-chart > .elements .color0.hover,
|
|
3734
|
+
.scatter-chart > .elements .color0.hover {
|
|
3659
3735
|
fill: rgba(21, 97, 167, 0.35);
|
|
3660
3736
|
}
|
|
3661
|
-
.bubble-chart > .elements .color1.hover
|
|
3737
|
+
.bubble-chart > .elements .color1.hover,
|
|
3738
|
+
.scatter-chart > .elements .color1.hover {
|
|
3662
3739
|
fill: rgba(24, 110, 190, 0.35);
|
|
3663
3740
|
}
|
|
3664
|
-
.bubble-chart > .elements .color2.hover
|
|
3741
|
+
.bubble-chart > .elements .color2.hover,
|
|
3742
|
+
.scatter-chart > .elements .color2.hover {
|
|
3665
3743
|
fill: rgba(116, 168, 216, 0.35);
|
|
3666
3744
|
}
|
|
3667
|
-
.bubble-chart > .elements .color3.hover
|
|
3745
|
+
.bubble-chart > .elements .color3.hover,
|
|
3746
|
+
.scatter-chart > .elements .color3.hover {
|
|
3668
3747
|
fill: rgba(193, 222, 249, 0.35);
|
|
3669
3748
|
}
|
|
3670
|
-
.bubble-chart > .elements .color4.hover
|
|
3749
|
+
.bubble-chart > .elements .color4.hover,
|
|
3750
|
+
.scatter-chart > .elements .color4.hover {
|
|
3671
3751
|
fill: rgba(1, 71, 134, 0.35);
|
|
3672
3752
|
}
|
|
3673
|
-
.bubble-chart > .elements .color5.hover
|
|
3753
|
+
.bubble-chart > .elements .color5.hover,
|
|
3754
|
+
.scatter-chart > .elements .color5.hover {
|
|
3674
3755
|
fill: rgba(47, 60, 69, 0.35);
|
|
3675
3756
|
}
|
|
3676
|
-
.inverted .bubble-chart > .elements
|
|
3757
|
+
.inverted .bubble-chart > .elements,
|
|
3758
|
+
.inverted .scatter-chart > .elements {
|
|
3677
3759
|
fill: #C1DEF9;
|
|
3678
3760
|
}
|
|
3679
|
-
.inverted .bubble-chart > .elements .color0.hover
|
|
3761
|
+
.inverted .bubble-chart > .elements .color0.hover,
|
|
3762
|
+
.inverted .scatter-chart > .elements .color0.hover {
|
|
3680
3763
|
fill: rgba(193, 222, 249, 0.35);
|
|
3681
3764
|
}
|
|
3682
|
-
.inverted .bubble-chart > .elements .color1.hover
|
|
3765
|
+
.inverted .bubble-chart > .elements .color1.hover,
|
|
3766
|
+
.inverted .scatter-chart > .elements .color1.hover {
|
|
3683
3767
|
fill: rgba(147, 197, 244, 0.35);
|
|
3684
3768
|
}
|
|
3685
|
-
.inverted .bubble-chart > .elements .color2.hover
|
|
3769
|
+
.inverted .bubble-chart > .elements .color2.hover,
|
|
3770
|
+
.inverted .scatter-chart > .elements .color2.hover {
|
|
3686
3771
|
fill: rgba(116, 168, 216, 0.35);
|
|
3687
3772
|
}
|
|
3688
|
-
.inverted .bubble-chart > .elements .color3.hover
|
|
3773
|
+
.inverted .bubble-chart > .elements .color3.hover,
|
|
3774
|
+
.inverted .scatter-chart > .elements .color3.hover {
|
|
3689
3775
|
fill: rgba(76, 143, 205, 0.35);
|
|
3690
3776
|
}
|
|
3691
|
-
.inverted .bubble-chart > .elements .color4.hover
|
|
3777
|
+
.inverted .bubble-chart > .elements .color4.hover,
|
|
3778
|
+
.inverted .scatter-chart > .elements .color4.hover {
|
|
3692
3779
|
fill: rgba(1, 71, 134, 0.35);
|
|
3693
3780
|
}
|
|
3694
|
-
.inverted .bubble-chart > .elements .color5.hover
|
|
3781
|
+
.inverted .bubble-chart > .elements .color5.hover,
|
|
3782
|
+
.inverted .scatter-chart > .elements .color5.hover {
|
|
3695
3783
|
fill: rgba(47, 60, 69, 0.35);
|
|
3696
3784
|
}
|
|
3697
|
-
.color-alternative .bubble-chart > .elements
|
|
3785
|
+
.color-alternative .bubble-chart > .elements,
|
|
3786
|
+
.color-alternative .scatter-chart > .elements {
|
|
3698
3787
|
fill: #0DA98C;
|
|
3699
3788
|
}
|
|
3700
|
-
.color-alternative .bubble-chart > .elements .color0.hover
|
|
3789
|
+
.color-alternative .bubble-chart > .elements .color0.hover,
|
|
3790
|
+
.color-alternative .scatter-chart > .elements .color0.hover {
|
|
3701
3791
|
fill: rgba(13, 169, 140, 0.35);
|
|
3702
3792
|
}
|
|
3703
|
-
.color-alternative .bubble-chart > .elements .color1.hover
|
|
3793
|
+
.color-alternative .bubble-chart > .elements .color1.hover,
|
|
3794
|
+
.color-alternative .scatter-chart > .elements .color1.hover {
|
|
3704
3795
|
fill: rgba(15, 193, 160, 0.35);
|
|
3705
3796
|
}
|
|
3706
|
-
.color-alternative .bubble-chart > .elements .color2.hover
|
|
3797
|
+
.color-alternative .bubble-chart > .elements .color2.hover,
|
|
3798
|
+
.color-alternative .scatter-chart > .elements .color2.hover {
|
|
3707
3799
|
fill: rgba(31, 201, 170, 0.35);
|
|
3708
3800
|
}
|
|
3709
|
-
.color-alternative .bubble-chart > .elements .color3.hover
|
|
3801
|
+
.color-alternative .bubble-chart > .elements .color3.hover,
|
|
3802
|
+
.color-alternative .scatter-chart > .elements .color3.hover {
|
|
3710
3803
|
fill: rgba(103, 233, 209, 0.35);
|
|
3711
3804
|
}
|
|
3712
|
-
.color-alternative .bubble-chart > .elements .color4.hover
|
|
3805
|
+
.color-alternative .bubble-chart > .elements .color4.hover,
|
|
3806
|
+
.color-alternative .scatter-chart > .elements .color4.hover {
|
|
3713
3807
|
fill: rgba(189, 242, 232, 0.35);
|
|
3714
3808
|
}
|
|
3715
|
-
.color-alternative .bubble-chart > .elements .color5.hover
|
|
3809
|
+
.color-alternative .bubble-chart > .elements .color5.hover,
|
|
3810
|
+
.color-alternative .scatter-chart > .elements .color5.hover {
|
|
3716
3811
|
fill: rgba(0, 133, 108, 0.35);
|
|
3717
3812
|
}
|
|
3718
|
-
.color-alternative.inverted .bubble-chart > .elements
|
|
3813
|
+
.color-alternative.inverted .bubble-chart > .elements,
|
|
3814
|
+
.color-alternative.inverted .scatter-chart > .elements {
|
|
3719
3815
|
fill: #BDF2E8;
|
|
3720
3816
|
}
|
|
3721
|
-
.color-alternative.inverted .bubble-chart > .elements .color0.hover
|
|
3817
|
+
.color-alternative.inverted .bubble-chart > .elements .color0.hover,
|
|
3818
|
+
.color-alternative.inverted .scatter-chart > .elements .color0.hover {
|
|
3722
3819
|
fill: rgba(189, 242, 232, 0.35);
|
|
3723
3820
|
}
|
|
3724
|
-
.color-alternative.inverted .bubble-chart > .elements .color1.hover
|
|
3821
|
+
.color-alternative.inverted .bubble-chart > .elements .color1.hover,
|
|
3822
|
+
.color-alternative.inverted .scatter-chart > .elements .color1.hover {
|
|
3725
3823
|
fill: rgba(103, 233, 209, 0.35);
|
|
3726
3824
|
}
|
|
3727
|
-
.color-alternative.inverted .bubble-chart > .elements .color2.hover
|
|
3825
|
+
.color-alternative.inverted .bubble-chart > .elements .color2.hover,
|
|
3826
|
+
.color-alternative.inverted .scatter-chart > .elements .color2.hover {
|
|
3728
3827
|
fill: rgba(31, 201, 170, 0.35);
|
|
3729
3828
|
}
|
|
3730
|
-
.color-alternative.inverted .bubble-chart > .elements .color3.hover
|
|
3829
|
+
.color-alternative.inverted .bubble-chart > .elements .color3.hover,
|
|
3830
|
+
.color-alternative.inverted .scatter-chart > .elements .color3.hover {
|
|
3731
3831
|
fill: rgba(13, 169, 140, 0.35);
|
|
3732
3832
|
}
|
|
3733
|
-
.color-alternative.inverted .bubble-chart > .elements .color4.hover
|
|
3833
|
+
.color-alternative.inverted .bubble-chart > .elements .color4.hover,
|
|
3834
|
+
.color-alternative.inverted .scatter-chart > .elements .color4.hover {
|
|
3734
3835
|
fill: rgba(0, 133, 108, 0.35);
|
|
3735
3836
|
}
|
|
3736
|
-
.color-alternative.inverted .bubble-chart > .elements .color5.hover
|
|
3837
|
+
.color-alternative.inverted .bubble-chart > .elements .color5.hover,
|
|
3838
|
+
.color-alternative.inverted .scatter-chart > .elements .color5.hover {
|
|
3737
3839
|
fill: rgba(0, 82, 67, 0.35);
|
|
3738
3840
|
}
|
|
3739
|
-
.color-rainbow .bubble-chart > .elements
|
|
3841
|
+
.color-rainbow .bubble-chart > .elements,
|
|
3842
|
+
.color-rainbow .scatter-chart > .elements {
|
|
3740
3843
|
fill: #1561A7;
|
|
3741
3844
|
}
|
|
3742
|
-
.color-rainbow .bubble-chart > .elements .color0.hover
|
|
3845
|
+
.color-rainbow .bubble-chart > .elements .color0.hover,
|
|
3846
|
+
.color-rainbow .scatter-chart > .elements .color0.hover {
|
|
3743
3847
|
fill: rgba(21, 97, 167, 0.35);
|
|
3744
3848
|
}
|
|
3745
|
-
.color-rainbow .bubble-chart > .elements .color1.hover
|
|
3849
|
+
.color-rainbow .bubble-chart > .elements .color1.hover,
|
|
3850
|
+
.color-rainbow .scatter-chart > .elements .color1.hover {
|
|
3746
3851
|
fill: rgba(254, 153, 21, 0.35);
|
|
3747
3852
|
}
|
|
3748
|
-
.color-rainbow .bubble-chart > .elements .color2.hover
|
|
3853
|
+
.color-rainbow .bubble-chart > .elements .color2.hover,
|
|
3854
|
+
.color-rainbow .scatter-chart > .elements .color2.hover {
|
|
3749
3855
|
fill: rgba(31, 201, 170, 0.35);
|
|
3750
3856
|
}
|
|
3751
|
-
.color-rainbow .bubble-chart > .elements .color3.hover
|
|
3857
|
+
.color-rainbow .bubble-chart > .elements .color3.hover,
|
|
3858
|
+
.color-rainbow .scatter-chart > .elements .color3.hover {
|
|
3752
3859
|
fill: rgba(102, 102, 102, 0.35);
|
|
3753
3860
|
}
|
|
3754
|
-
.color-rainbow .bubble-chart > .elements .color4.hover
|
|
3861
|
+
.color-rainbow .bubble-chart > .elements .color4.hover,
|
|
3862
|
+
.color-rainbow .scatter-chart > .elements .color4.hover {
|
|
3755
3863
|
fill: rgba(255, 85, 85, 0.35);
|
|
3756
3864
|
}
|
|
3757
|
-
.color-rainbow .bubble-chart > .elements .color5.hover
|
|
3865
|
+
.color-rainbow .bubble-chart > .elements .color5.hover,
|
|
3866
|
+
.color-rainbow .scatter-chart > .elements .color5.hover {
|
|
3758
3867
|
fill: rgba(0, 133, 108, 0.35);
|
|
3759
3868
|
}
|
|
3760
|
-
.bubble-chart > .elements .stroke-color0.hover
|
|
3869
|
+
.bubble-chart > .elements .stroke-color0.hover,
|
|
3870
|
+
.scatter-chart > .elements .stroke-color0.hover {
|
|
3761
3871
|
stroke: #0f477a;
|
|
3762
3872
|
}
|
|
3763
|
-
.bubble-chart > .elements .stroke-color1.hover
|
|
3873
|
+
.bubble-chart > .elements .stroke-color1.hover,
|
|
3874
|
+
.scatter-chart > .elements .stroke-color1.hover {
|
|
3764
3875
|
stroke: #125490;
|
|
3765
3876
|
}
|
|
3766
|
-
.bubble-chart > .elements .stroke-color2.hover
|
|
3877
|
+
.bubble-chart > .elements .stroke-color2.hover,
|
|
3878
|
+
.scatter-chart > .elements .stroke-color2.hover {
|
|
3767
3879
|
stroke: #4c8fcd;
|
|
3768
3880
|
}
|
|
3769
|
-
.bubble-chart > .elements .stroke-color3.hover
|
|
3881
|
+
.bubble-chart > .elements .stroke-color3.hover,
|
|
3882
|
+
.scatter-chart > .elements .stroke-color3.hover {
|
|
3770
3883
|
stroke: #93c5f4;
|
|
3771
3884
|
}
|
|
3772
|
-
.bubble-chart > .elements .stroke-color4.hover
|
|
3885
|
+
.bubble-chart > .elements .stroke-color4.hover,
|
|
3886
|
+
.scatter-chart > .elements .stroke-color4.hover {
|
|
3773
3887
|
stroke: #012c53;
|
|
3774
3888
|
}
|
|
3775
|
-
.bubble-chart > .elements .stroke-color5.hover
|
|
3889
|
+
.bubble-chart > .elements .stroke-color5.hover,
|
|
3890
|
+
.scatter-chart > .elements .stroke-color5.hover {
|
|
3776
3891
|
stroke: #1a2227;
|
|
3777
3892
|
}
|
|
3778
|
-
.inverted .bubble-chart > .elements .stroke-color0.hover
|
|
3893
|
+
.inverted .bubble-chart > .elements .stroke-color0.hover,
|
|
3894
|
+
.inverted .scatter-chart > .elements .stroke-color0.hover {
|
|
3779
3895
|
stroke: #93c5f4;
|
|
3780
3896
|
}
|
|
3781
|
-
.inverted .bubble-chart > .elements .stroke-color1.hover
|
|
3897
|
+
.inverted .bubble-chart > .elements .stroke-color1.hover,
|
|
3898
|
+
.inverted .scatter-chart > .elements .stroke-color1.hover {
|
|
3782
3899
|
stroke: #64adf0;
|
|
3783
3900
|
}
|
|
3784
|
-
.inverted .bubble-chart > .elements .stroke-color2.hover
|
|
3901
|
+
.inverted .bubble-chart > .elements .stroke-color2.hover,
|
|
3902
|
+
.inverted .scatter-chart > .elements .stroke-color2.hover {
|
|
3785
3903
|
stroke: #4c8fcd;
|
|
3786
3904
|
}
|
|
3787
|
-
.inverted .bubble-chart > .elements .stroke-color3.hover
|
|
3905
|
+
.inverted .bubble-chart > .elements .stroke-color3.hover,
|
|
3906
|
+
.inverted .scatter-chart > .elements .stroke-color3.hover {
|
|
3788
3907
|
stroke: #3276b4;
|
|
3789
3908
|
}
|
|
3790
|
-
.inverted .bubble-chart > .elements .stroke-color4.hover
|
|
3909
|
+
.inverted .bubble-chart > .elements .stroke-color4.hover,
|
|
3910
|
+
.inverted .scatter-chart > .elements .stroke-color4.hover {
|
|
3791
3911
|
stroke: #012c53;
|
|
3792
3912
|
}
|
|
3793
|
-
.inverted .bubble-chart > .elements .stroke-color5.hover
|
|
3913
|
+
.inverted .bubble-chart > .elements .stroke-color5.hover,
|
|
3914
|
+
.inverted .scatter-chart > .elements .stroke-color5.hover {
|
|
3794
3915
|
stroke: #1a2227;
|
|
3795
3916
|
}
|
|
3796
|
-
.color-alternative .bubble-chart > .elements .stroke-color0.hover
|
|
3917
|
+
.color-alternative .bubble-chart > .elements .stroke-color0.hover,
|
|
3918
|
+
.color-alternative .scatter-chart > .elements .stroke-color0.hover {
|
|
3797
3919
|
stroke: #097a65;
|
|
3798
3920
|
}
|
|
3799
|
-
.color-alternative .bubble-chart > .elements .stroke-color1.hover
|
|
3921
|
+
.color-alternative .bubble-chart > .elements .stroke-color1.hover,
|
|
3922
|
+
.color-alternative .scatter-chart > .elements .stroke-color1.hover {
|
|
3800
3923
|
stroke: #0b9178;
|
|
3801
3924
|
}
|
|
3802
|
-
.color-alternative .bubble-chart > .elements .stroke-color2.hover
|
|
3925
|
+
.color-alternative .bubble-chart > .elements .stroke-color2.hover,
|
|
3926
|
+
.color-alternative .scatter-chart > .elements .stroke-color2.hover {
|
|
3803
3927
|
stroke: #189d85;
|
|
3804
3928
|
}
|
|
3805
|
-
.color-alternative .bubble-chart > .elements .stroke-color3.hover
|
|
3929
|
+
.color-alternative .bubble-chart > .elements .stroke-color3.hover,
|
|
3930
|
+
.color-alternative .scatter-chart > .elements .stroke-color3.hover {
|
|
3806
3931
|
stroke: #3ae3c4;
|
|
3807
3932
|
}
|
|
3808
|
-
.color-alternative .bubble-chart > .elements .stroke-color4.hover
|
|
3933
|
+
.color-alternative .bubble-chart > .elements .stroke-color4.hover,
|
|
3934
|
+
.color-alternative .scatter-chart > .elements .stroke-color4.hover {
|
|
3809
3935
|
stroke: #92ead9;
|
|
3810
3936
|
}
|
|
3811
|
-
.color-alternative .bubble-chart > .elements .stroke-color5.hover
|
|
3937
|
+
.color-alternative .bubble-chart > .elements .stroke-color5.hover,
|
|
3938
|
+
.color-alternative .scatter-chart > .elements .stroke-color5.hover {
|
|
3812
3939
|
stroke: #005243;
|
|
3813
3940
|
}
|
|
3814
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color0.hover
|
|
3941
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color0.hover,
|
|
3942
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color0.hover {
|
|
3815
3943
|
stroke: #92ead9;
|
|
3816
3944
|
}
|
|
3817
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color1.hover
|
|
3945
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color1.hover,
|
|
3946
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color1.hover {
|
|
3818
3947
|
stroke: #3ae3c4;
|
|
3819
3948
|
}
|
|
3820
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color2.hover
|
|
3949
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color2.hover,
|
|
3950
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color2.hover {
|
|
3821
3951
|
stroke: #189d85;
|
|
3822
3952
|
}
|
|
3823
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color3.hover
|
|
3953
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color3.hover,
|
|
3954
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color3.hover {
|
|
3824
3955
|
stroke: #097a65;
|
|
3825
3956
|
}
|
|
3826
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color4.hover
|
|
3957
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color4.hover,
|
|
3958
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color4.hover {
|
|
3827
3959
|
stroke: #005243;
|
|
3828
3960
|
}
|
|
3829
|
-
.color-alternative.inverted .bubble-chart > .elements .stroke-color5.hover
|
|
3961
|
+
.color-alternative.inverted .bubble-chart > .elements .stroke-color5.hover,
|
|
3962
|
+
.color-alternative.inverted .scatter-chart > .elements .stroke-color5.hover {
|
|
3830
3963
|
stroke: #001f19;
|
|
3831
3964
|
}
|
|
3832
|
-
.color-rainbow .bubble-chart > .elements .stroke-color0.hover
|
|
3965
|
+
.color-rainbow .bubble-chart > .elements .stroke-color0.hover,
|
|
3966
|
+
.color-rainbow .scatter-chart > .elements .stroke-color0.hover {
|
|
3833
3967
|
stroke: #0f477a;
|
|
3834
3968
|
}
|
|
3835
|
-
.color-rainbow .bubble-chart > .elements .stroke-color1.hover
|
|
3969
|
+
.color-rainbow .bubble-chart > .elements .stroke-color1.hover,
|
|
3970
|
+
.color-rainbow .scatter-chart > .elements .stroke-color1.hover {
|
|
3836
3971
|
stroke: #df7f01;
|
|
3837
3972
|
}
|
|
3838
|
-
.color-rainbow .bubble-chart > .elements .stroke-color2.hover
|
|
3973
|
+
.color-rainbow .bubble-chart > .elements .stroke-color2.hover,
|
|
3974
|
+
.color-rainbow .scatter-chart > .elements .stroke-color2.hover {
|
|
3839
3975
|
stroke: #189d85;
|
|
3840
3976
|
}
|
|
3841
|
-
.color-rainbow .bubble-chart > .elements .stroke-color3.hover
|
|
3977
|
+
.color-rainbow .bubble-chart > .elements .stroke-color3.hover,
|
|
3978
|
+
.color-rainbow .scatter-chart > .elements .stroke-color3.hover {
|
|
3842
3979
|
stroke: #4d4d4d;
|
|
3843
3980
|
}
|
|
3844
|
-
.color-rainbow .bubble-chart > .elements .stroke-color4.hover
|
|
3981
|
+
.color-rainbow .bubble-chart > .elements .stroke-color4.hover,
|
|
3982
|
+
.color-rainbow .scatter-chart > .elements .stroke-color4.hover {
|
|
3845
3983
|
stroke: #ff2222;
|
|
3846
3984
|
}
|
|
3847
|
-
.color-rainbow .bubble-chart > .elements .stroke-color5.hover
|
|
3985
|
+
.color-rainbow .bubble-chart > .elements .stroke-color5.hover,
|
|
3986
|
+
.color-rainbow .scatter-chart > .elements .stroke-color5.hover {
|
|
3848
3987
|
stroke: #005243;
|
|
3849
3988
|
}
|
|
3850
|
-
.checkable.bubble-chart > .elements
|
|
3989
|
+
.checkable.bubble-chart > .elements,
|
|
3990
|
+
.checkable.scatter-chart > .elements {
|
|
3851
3991
|
fill: #1561A7;
|
|
3852
3992
|
}
|
|
3853
|
-
.checkable.bubble-chart > .elements .color0.checked
|
|
3993
|
+
.checkable.bubble-chart > .elements .color0.checked,
|
|
3994
|
+
.checkable.scatter-chart > .elements .color0.checked {
|
|
3854
3995
|
fill: #1561a7;
|
|
3855
3996
|
}
|
|
3856
|
-
.checkable.bubble-chart > .elements .color1.checked
|
|
3997
|
+
.checkable.bubble-chart > .elements .color1.checked,
|
|
3998
|
+
.checkable.scatter-chart > .elements .color1.checked {
|
|
3857
3999
|
fill: #186ebe;
|
|
3858
4000
|
}
|
|
3859
|
-
.checkable.bubble-chart > .elements .color2.checked
|
|
4001
|
+
.checkable.bubble-chart > .elements .color2.checked,
|
|
4002
|
+
.checkable.scatter-chart > .elements .color2.checked {
|
|
3860
4003
|
fill: #74a8d8;
|
|
3861
4004
|
}
|
|
3862
|
-
.checkable.bubble-chart > .elements .color3.checked
|
|
4005
|
+
.checkable.bubble-chart > .elements .color3.checked,
|
|
4006
|
+
.checkable.scatter-chart > .elements .color3.checked {
|
|
3863
4007
|
fill: #c1def9;
|
|
3864
4008
|
}
|
|
3865
|
-
.checkable.bubble-chart > .elements .color4.checked
|
|
4009
|
+
.checkable.bubble-chart > .elements .color4.checked,
|
|
4010
|
+
.checkable.scatter-chart > .elements .color4.checked {
|
|
3866
4011
|
fill: #014786;
|
|
3867
4012
|
}
|
|
3868
|
-
.checkable.bubble-chart > .elements .color5.checked
|
|
4013
|
+
.checkable.bubble-chart > .elements .color5.checked,
|
|
4014
|
+
.checkable.scatter-chart > .elements .color5.checked {
|
|
3869
4015
|
fill: #2f3c45;
|
|
3870
4016
|
}
|
|
3871
|
-
.inverted .checkable.bubble-chart > .elements
|
|
4017
|
+
.inverted .checkable.bubble-chart > .elements,
|
|
4018
|
+
.inverted .checkable.scatter-chart > .elements {
|
|
3872
4019
|
fill: #C1DEF9;
|
|
3873
4020
|
}
|
|
3874
|
-
.inverted .checkable.bubble-chart > .elements .color0.checked
|
|
4021
|
+
.inverted .checkable.bubble-chart > .elements .color0.checked,
|
|
4022
|
+
.inverted .checkable.scatter-chart > .elements .color0.checked {
|
|
3875
4023
|
fill: #c1def9;
|
|
3876
4024
|
}
|
|
3877
|
-
.inverted .checkable.bubble-chart > .elements .color1.checked
|
|
4025
|
+
.inverted .checkable.bubble-chart > .elements .color1.checked,
|
|
4026
|
+
.inverted .checkable.scatter-chart > .elements .color1.checked {
|
|
3878
4027
|
fill: #93c5f4;
|
|
3879
4028
|
}
|
|
3880
|
-
.inverted .checkable.bubble-chart > .elements .color2.checked
|
|
4029
|
+
.inverted .checkable.bubble-chart > .elements .color2.checked,
|
|
4030
|
+
.inverted .checkable.scatter-chart > .elements .color2.checked {
|
|
3881
4031
|
fill: #74a8d8;
|
|
3882
4032
|
}
|
|
3883
|
-
.inverted .checkable.bubble-chart > .elements .color3.checked
|
|
4033
|
+
.inverted .checkable.bubble-chart > .elements .color3.checked,
|
|
4034
|
+
.inverted .checkable.scatter-chart > .elements .color3.checked {
|
|
3884
4035
|
fill: #4c8fcd;
|
|
3885
4036
|
}
|
|
3886
|
-
.inverted .checkable.bubble-chart > .elements .color4.checked
|
|
4037
|
+
.inverted .checkable.bubble-chart > .elements .color4.checked,
|
|
4038
|
+
.inverted .checkable.scatter-chart > .elements .color4.checked {
|
|
3887
4039
|
fill: #014786;
|
|
3888
4040
|
}
|
|
3889
|
-
.inverted .checkable.bubble-chart > .elements .color5.checked
|
|
4041
|
+
.inverted .checkable.bubble-chart > .elements .color5.checked,
|
|
4042
|
+
.inverted .checkable.scatter-chart > .elements .color5.checked {
|
|
3890
4043
|
fill: #2f3c45;
|
|
3891
4044
|
}
|
|
3892
|
-
.color-alternative .checkable.bubble-chart > .elements
|
|
4045
|
+
.color-alternative .checkable.bubble-chart > .elements,
|
|
4046
|
+
.color-alternative .checkable.scatter-chart > .elements {
|
|
3893
4047
|
fill: #0DA98C;
|
|
3894
4048
|
}
|
|
3895
|
-
.color-alternative .checkable.bubble-chart > .elements .color0.checked
|
|
4049
|
+
.color-alternative .checkable.bubble-chart > .elements .color0.checked,
|
|
4050
|
+
.color-alternative .checkable.scatter-chart > .elements .color0.checked {
|
|
3896
4051
|
fill: #0da98c;
|
|
3897
4052
|
}
|
|
3898
|
-
.color-alternative .checkable.bubble-chart > .elements .color1.checked
|
|
4053
|
+
.color-alternative .checkable.bubble-chart > .elements .color1.checked,
|
|
4054
|
+
.color-alternative .checkable.scatter-chart > .elements .color1.checked {
|
|
3899
4055
|
fill: #0fc1a0;
|
|
3900
4056
|
}
|
|
3901
|
-
.color-alternative .checkable.bubble-chart > .elements .color2.checked
|
|
4057
|
+
.color-alternative .checkable.bubble-chart > .elements .color2.checked,
|
|
4058
|
+
.color-alternative .checkable.scatter-chart > .elements .color2.checked {
|
|
3902
4059
|
fill: #1fc9aa;
|
|
3903
4060
|
}
|
|
3904
|
-
.color-alternative .checkable.bubble-chart > .elements .color3.checked
|
|
4061
|
+
.color-alternative .checkable.bubble-chart > .elements .color3.checked,
|
|
4062
|
+
.color-alternative .checkable.scatter-chart > .elements .color3.checked {
|
|
3905
4063
|
fill: #67e9d1;
|
|
3906
4064
|
}
|
|
3907
|
-
.color-alternative .checkable.bubble-chart > .elements .color4.checked
|
|
4065
|
+
.color-alternative .checkable.bubble-chart > .elements .color4.checked,
|
|
4066
|
+
.color-alternative .checkable.scatter-chart > .elements .color4.checked {
|
|
3908
4067
|
fill: #bdf2e8;
|
|
3909
4068
|
}
|
|
3910
|
-
.color-alternative .checkable.bubble-chart > .elements .color5.checked
|
|
4069
|
+
.color-alternative .checkable.bubble-chart > .elements .color5.checked,
|
|
4070
|
+
.color-alternative .checkable.scatter-chart > .elements .color5.checked {
|
|
3911
4071
|
fill: #00856c;
|
|
3912
4072
|
}
|
|
3913
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements
|
|
4073
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements,
|
|
4074
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements {
|
|
3914
4075
|
fill: #BDF2E8;
|
|
3915
4076
|
}
|
|
3916
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color0.checked
|
|
4077
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color0.checked,
|
|
4078
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color0.checked {
|
|
3917
4079
|
fill: #bdf2e8;
|
|
3918
4080
|
}
|
|
3919
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color1.checked
|
|
4081
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color1.checked,
|
|
4082
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color1.checked {
|
|
3920
4083
|
fill: #67e9d1;
|
|
3921
4084
|
}
|
|
3922
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color2.checked
|
|
4085
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color2.checked,
|
|
4086
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color2.checked {
|
|
3923
4087
|
fill: #1fc9aa;
|
|
3924
4088
|
}
|
|
3925
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color3.checked
|
|
4089
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color3.checked,
|
|
4090
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color3.checked {
|
|
3926
4091
|
fill: #0da98c;
|
|
3927
4092
|
}
|
|
3928
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color4.checked
|
|
4093
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color4.checked,
|
|
4094
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color4.checked {
|
|
3929
4095
|
fill: #00856c;
|
|
3930
4096
|
}
|
|
3931
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color5.checked
|
|
4097
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color5.checked,
|
|
4098
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color5.checked {
|
|
3932
4099
|
fill: #005243;
|
|
3933
4100
|
}
|
|
3934
|
-
.color-rainbow .checkable.bubble-chart > .elements
|
|
4101
|
+
.color-rainbow .checkable.bubble-chart > .elements,
|
|
4102
|
+
.color-rainbow .checkable.scatter-chart > .elements {
|
|
3935
4103
|
fill: #1561A7;
|
|
3936
4104
|
}
|
|
3937
|
-
.color-rainbow .checkable.bubble-chart > .elements .color0.checked
|
|
4105
|
+
.color-rainbow .checkable.bubble-chart > .elements .color0.checked,
|
|
4106
|
+
.color-rainbow .checkable.scatter-chart > .elements .color0.checked {
|
|
3938
4107
|
fill: #1561a7;
|
|
3939
4108
|
}
|
|
3940
|
-
.color-rainbow .checkable.bubble-chart > .elements .color1.checked
|
|
4109
|
+
.color-rainbow .checkable.bubble-chart > .elements .color1.checked,
|
|
4110
|
+
.color-rainbow .checkable.scatter-chart > .elements .color1.checked {
|
|
3941
4111
|
fill: #fe9915;
|
|
3942
4112
|
}
|
|
3943
|
-
.color-rainbow .checkable.bubble-chart > .elements .color2.checked
|
|
4113
|
+
.color-rainbow .checkable.bubble-chart > .elements .color2.checked,
|
|
4114
|
+
.color-rainbow .checkable.scatter-chart > .elements .color2.checked {
|
|
3944
4115
|
fill: #1fc9aa;
|
|
3945
4116
|
}
|
|
3946
|
-
.color-rainbow .checkable.bubble-chart > .elements .color3.checked
|
|
4117
|
+
.color-rainbow .checkable.bubble-chart > .elements .color3.checked,
|
|
4118
|
+
.color-rainbow .checkable.scatter-chart > .elements .color3.checked {
|
|
3947
4119
|
fill: #666666;
|
|
3948
4120
|
}
|
|
3949
|
-
.color-rainbow .checkable.bubble-chart > .elements .color4.checked
|
|
4121
|
+
.color-rainbow .checkable.bubble-chart > .elements .color4.checked,
|
|
4122
|
+
.color-rainbow .checkable.scatter-chart > .elements .color4.checked {
|
|
3950
4123
|
fill: #ff5555;
|
|
3951
4124
|
}
|
|
3952
|
-
.color-rainbow .checkable.bubble-chart > .elements .color5.checked
|
|
4125
|
+
.color-rainbow .checkable.bubble-chart > .elements .color5.checked,
|
|
4126
|
+
.color-rainbow .checkable.scatter-chart > .elements .color5.checked {
|
|
3953
4127
|
fill: #00856c;
|
|
3954
4128
|
}
|
|
3955
|
-
.checkable.bubble-chart > .elements .color0.hover.checked
|
|
4129
|
+
.checkable.bubble-chart > .elements .color0.hover.checked,
|
|
4130
|
+
.checkable.scatter-chart > .elements .color0.hover.checked {
|
|
3956
4131
|
fill: #0f477a;
|
|
3957
4132
|
}
|
|
3958
|
-
.checkable.bubble-chart > .elements .color1.hover.checked
|
|
4133
|
+
.checkable.bubble-chart > .elements .color1.hover.checked,
|
|
4134
|
+
.checkable.scatter-chart > .elements .color1.hover.checked {
|
|
3959
4135
|
fill: #125490;
|
|
3960
4136
|
}
|
|
3961
|
-
.checkable.bubble-chart > .elements .color2.hover.checked
|
|
4137
|
+
.checkable.bubble-chart > .elements .color2.hover.checked,
|
|
4138
|
+
.checkable.scatter-chart > .elements .color2.hover.checked {
|
|
3962
4139
|
fill: #4c8fcd;
|
|
3963
4140
|
}
|
|
3964
|
-
.checkable.bubble-chart > .elements .color3.hover.checked
|
|
4141
|
+
.checkable.bubble-chart > .elements .color3.hover.checked,
|
|
4142
|
+
.checkable.scatter-chart > .elements .color3.hover.checked {
|
|
3965
4143
|
fill: #93c5f4;
|
|
3966
4144
|
}
|
|
3967
|
-
.checkable.bubble-chart > .elements .color4.hover.checked
|
|
4145
|
+
.checkable.bubble-chart > .elements .color4.hover.checked,
|
|
4146
|
+
.checkable.scatter-chart > .elements .color4.hover.checked {
|
|
3968
4147
|
fill: #012c53;
|
|
3969
4148
|
}
|
|
3970
|
-
.checkable.bubble-chart > .elements .color5.hover.checked
|
|
4149
|
+
.checkable.bubble-chart > .elements .color5.hover.checked,
|
|
4150
|
+
.checkable.scatter-chart > .elements .color5.hover.checked {
|
|
3971
4151
|
fill: #1a2227;
|
|
3972
4152
|
}
|
|
3973
|
-
.inverted .checkable.bubble-chart > .elements
|
|
4153
|
+
.inverted .checkable.bubble-chart > .elements,
|
|
4154
|
+
.inverted .checkable.scatter-chart > .elements {
|
|
3974
4155
|
fill: #C1DEF9;
|
|
3975
4156
|
}
|
|
3976
|
-
.inverted .checkable.bubble-chart > .elements .color0.hover.checked
|
|
4157
|
+
.inverted .checkable.bubble-chart > .elements .color0.hover.checked,
|
|
4158
|
+
.inverted .checkable.scatter-chart > .elements .color0.hover.checked {
|
|
3977
4159
|
fill: #93c5f4;
|
|
3978
4160
|
}
|
|
3979
|
-
.inverted .checkable.bubble-chart > .elements .color1.hover.checked
|
|
4161
|
+
.inverted .checkable.bubble-chart > .elements .color1.hover.checked,
|
|
4162
|
+
.inverted .checkable.scatter-chart > .elements .color1.hover.checked {
|
|
3980
4163
|
fill: #64adf0;
|
|
3981
4164
|
}
|
|
3982
|
-
.inverted .checkable.bubble-chart > .elements .color2.hover.checked
|
|
4165
|
+
.inverted .checkable.bubble-chart > .elements .color2.hover.checked,
|
|
4166
|
+
.inverted .checkable.scatter-chart > .elements .color2.hover.checked {
|
|
3983
4167
|
fill: #4c8fcd;
|
|
3984
4168
|
}
|
|
3985
|
-
.inverted .checkable.bubble-chart > .elements .color3.hover.checked
|
|
4169
|
+
.inverted .checkable.bubble-chart > .elements .color3.hover.checked,
|
|
4170
|
+
.inverted .checkable.scatter-chart > .elements .color3.hover.checked {
|
|
3986
4171
|
fill: #3276b4;
|
|
3987
4172
|
}
|
|
3988
|
-
.inverted .checkable.bubble-chart > .elements .color4.hover.checked
|
|
4173
|
+
.inverted .checkable.bubble-chart > .elements .color4.hover.checked,
|
|
4174
|
+
.inverted .checkable.scatter-chart > .elements .color4.hover.checked {
|
|
3989
4175
|
fill: #012c53;
|
|
3990
4176
|
}
|
|
3991
|
-
.inverted .checkable.bubble-chart > .elements .color5.hover.checked
|
|
4177
|
+
.inverted .checkable.bubble-chart > .elements .color5.hover.checked,
|
|
4178
|
+
.inverted .checkable.scatter-chart > .elements .color5.hover.checked {
|
|
3992
4179
|
fill: #1a2227;
|
|
3993
4180
|
}
|
|
3994
|
-
.color-alternative .checkable.bubble-chart > .elements
|
|
4181
|
+
.color-alternative .checkable.bubble-chart > .elements,
|
|
4182
|
+
.color-alternative .checkable.scatter-chart > .elements {
|
|
3995
4183
|
fill: #0DA98C;
|
|
3996
4184
|
}
|
|
3997
|
-
.color-alternative .checkable.bubble-chart > .elements .color0.hover.checked
|
|
4185
|
+
.color-alternative .checkable.bubble-chart > .elements .color0.hover.checked,
|
|
4186
|
+
.color-alternative .checkable.scatter-chart > .elements .color0.hover.checked {
|
|
3998
4187
|
fill: #097a65;
|
|
3999
4188
|
}
|
|
4000
|
-
.color-alternative .checkable.bubble-chart > .elements .color1.hover.checked
|
|
4189
|
+
.color-alternative .checkable.bubble-chart > .elements .color1.hover.checked,
|
|
4190
|
+
.color-alternative .checkable.scatter-chart > .elements .color1.hover.checked {
|
|
4001
4191
|
fill: #0b9178;
|
|
4002
4192
|
}
|
|
4003
|
-
.color-alternative .checkable.bubble-chart > .elements .color2.hover.checked
|
|
4193
|
+
.color-alternative .checkable.bubble-chart > .elements .color2.hover.checked,
|
|
4194
|
+
.color-alternative .checkable.scatter-chart > .elements .color2.hover.checked {
|
|
4004
4195
|
fill: #189d85;
|
|
4005
4196
|
}
|
|
4006
|
-
.color-alternative .checkable.bubble-chart > .elements .color3.hover.checked
|
|
4197
|
+
.color-alternative .checkable.bubble-chart > .elements .color3.hover.checked,
|
|
4198
|
+
.color-alternative .checkable.scatter-chart > .elements .color3.hover.checked {
|
|
4007
4199
|
fill: #3ae3c4;
|
|
4008
4200
|
}
|
|
4009
|
-
.color-alternative .checkable.bubble-chart > .elements .color4.hover.checked
|
|
4201
|
+
.color-alternative .checkable.bubble-chart > .elements .color4.hover.checked,
|
|
4202
|
+
.color-alternative .checkable.scatter-chart > .elements .color4.hover.checked {
|
|
4010
4203
|
fill: #92ead9;
|
|
4011
4204
|
}
|
|
4012
|
-
.color-alternative .checkable.bubble-chart > .elements .color5.hover.checked
|
|
4205
|
+
.color-alternative .checkable.bubble-chart > .elements .color5.hover.checked,
|
|
4206
|
+
.color-alternative .checkable.scatter-chart > .elements .color5.hover.checked {
|
|
4013
4207
|
fill: #005243;
|
|
4014
4208
|
}
|
|
4015
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements
|
|
4209
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements,
|
|
4210
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements {
|
|
4016
4211
|
fill: #BDF2E8;
|
|
4017
4212
|
}
|
|
4018
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color0.hover.checked
|
|
4213
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color0.hover.checked,
|
|
4214
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color0.hover.checked {
|
|
4019
4215
|
fill: #92ead9;
|
|
4020
4216
|
}
|
|
4021
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color1.hover.checked
|
|
4217
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color1.hover.checked,
|
|
4218
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color1.hover.checked {
|
|
4022
4219
|
fill: #3ae3c4;
|
|
4023
4220
|
}
|
|
4024
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color2.hover.checked
|
|
4221
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color2.hover.checked,
|
|
4222
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color2.hover.checked {
|
|
4025
4223
|
fill: #189d85;
|
|
4026
4224
|
}
|
|
4027
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color3.hover.checked
|
|
4225
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color3.hover.checked,
|
|
4226
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color3.hover.checked {
|
|
4028
4227
|
fill: #097a65;
|
|
4029
4228
|
}
|
|
4030
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color4.hover.checked
|
|
4229
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color4.hover.checked,
|
|
4230
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color4.hover.checked {
|
|
4031
4231
|
fill: #005243;
|
|
4032
4232
|
}
|
|
4033
|
-
.color-alternative.inverted .checkable.bubble-chart > .elements .color5.hover.checked
|
|
4233
|
+
.color-alternative.inverted .checkable.bubble-chart > .elements .color5.hover.checked,
|
|
4234
|
+
.color-alternative.inverted .checkable.scatter-chart > .elements .color5.hover.checked {
|
|
4034
4235
|
fill: #001f19;
|
|
4035
4236
|
}
|
|
4036
|
-
.color-rainbow .checkable.bubble-chart > .elements
|
|
4237
|
+
.color-rainbow .checkable.bubble-chart > .elements,
|
|
4238
|
+
.color-rainbow .checkable.scatter-chart > .elements {
|
|
4037
4239
|
fill: #1561A7;
|
|
4038
4240
|
}
|
|
4039
|
-
.color-rainbow .checkable.bubble-chart > .elements .color0.hover.checked
|
|
4241
|
+
.color-rainbow .checkable.bubble-chart > .elements .color0.hover.checked,
|
|
4242
|
+
.color-rainbow .checkable.scatter-chart > .elements .color0.hover.checked {
|
|
4040
4243
|
fill: #0f477a;
|
|
4041
4244
|
}
|
|
4042
|
-
.color-rainbow .checkable.bubble-chart > .elements .color1.hover.checked
|
|
4245
|
+
.color-rainbow .checkable.bubble-chart > .elements .color1.hover.checked,
|
|
4246
|
+
.color-rainbow .checkable.scatter-chart > .elements .color1.hover.checked {
|
|
4043
4247
|
fill: #df7f01;
|
|
4044
4248
|
}
|
|
4045
|
-
.color-rainbow .checkable.bubble-chart > .elements .color2.hover.checked
|
|
4249
|
+
.color-rainbow .checkable.bubble-chart > .elements .color2.hover.checked,
|
|
4250
|
+
.color-rainbow .checkable.scatter-chart > .elements .color2.hover.checked {
|
|
4046
4251
|
fill: #189d85;
|
|
4047
4252
|
}
|
|
4048
|
-
.color-rainbow .checkable.bubble-chart > .elements .color3.hover.checked
|
|
4253
|
+
.color-rainbow .checkable.bubble-chart > .elements .color3.hover.checked,
|
|
4254
|
+
.color-rainbow .checkable.scatter-chart > .elements .color3.hover.checked {
|
|
4049
4255
|
fill: #4d4d4d;
|
|
4050
4256
|
}
|
|
4051
|
-
.color-rainbow .checkable.bubble-chart > .elements .color4.hover.checked
|
|
4257
|
+
.color-rainbow .checkable.bubble-chart > .elements .color4.hover.checked,
|
|
4258
|
+
.color-rainbow .checkable.scatter-chart > .elements .color4.hover.checked {
|
|
4052
4259
|
fill: #ff2222;
|
|
4053
4260
|
}
|
|
4054
|
-
.color-rainbow .checkable.bubble-chart > .elements .color5.hover.checked
|
|
4261
|
+
.color-rainbow .checkable.bubble-chart > .elements .color5.hover.checked,
|
|
4262
|
+
.color-rainbow .checkable.scatter-chart > .elements .color5.hover.checked {
|
|
4055
4263
|
fill: #005243;
|
|
4056
4264
|
}
|
|
4057
|
-
.bubble-chart > .elements .color0.legend
|
|
4265
|
+
.bubble-chart > .elements .color0.legend,
|
|
4266
|
+
.scatter-chart > .elements .color0.legend {
|
|
4058
4267
|
fill: #1561a7;
|
|
4059
4268
|
}
|
|
4060
|
-
.bubble-chart > .elements .color1.legend
|
|
4269
|
+
.bubble-chart > .elements .color1.legend,
|
|
4270
|
+
.scatter-chart > .elements .color1.legend {
|
|
4061
4271
|
fill: #186ebe;
|
|
4062
4272
|
}
|
|
4063
|
-
.bubble-chart > .elements .color2.legend
|
|
4273
|
+
.bubble-chart > .elements .color2.legend,
|
|
4274
|
+
.scatter-chart > .elements .color2.legend {
|
|
4064
4275
|
fill: #74a8d8;
|
|
4065
4276
|
}
|
|
4066
|
-
.bubble-chart > .elements .color3.legend
|
|
4277
|
+
.bubble-chart > .elements .color3.legend,
|
|
4278
|
+
.scatter-chart > .elements .color3.legend {
|
|
4067
4279
|
fill: #c1def9;
|
|
4068
4280
|
}
|
|
4069
|
-
.bubble-chart > .elements .color4.legend
|
|
4281
|
+
.bubble-chart > .elements .color4.legend,
|
|
4282
|
+
.scatter-chart > .elements .color4.legend {
|
|
4070
4283
|
fill: #014786;
|
|
4071
4284
|
}
|
|
4072
|
-
.bubble-chart > .elements .color5.legend
|
|
4285
|
+
.bubble-chart > .elements .color5.legend,
|
|
4286
|
+
.scatter-chart > .elements .color5.legend {
|
|
4073
4287
|
fill: #2f3c45;
|
|
4074
4288
|
}
|
|
4075
|
-
.inverted .bubble-chart > .elements
|
|
4289
|
+
.inverted .bubble-chart > .elements,
|
|
4290
|
+
.inverted .scatter-chart > .elements {
|
|
4076
4291
|
fill: #C1DEF9;
|
|
4077
4292
|
}
|
|
4078
|
-
.inverted .bubble-chart > .elements .color0.legend
|
|
4293
|
+
.inverted .bubble-chart > .elements .color0.legend,
|
|
4294
|
+
.inverted .scatter-chart > .elements .color0.legend {
|
|
4079
4295
|
fill: #c1def9;
|
|
4080
4296
|
}
|
|
4081
|
-
.inverted .bubble-chart > .elements .color1.legend
|
|
4297
|
+
.inverted .bubble-chart > .elements .color1.legend,
|
|
4298
|
+
.inverted .scatter-chart > .elements .color1.legend {
|
|
4082
4299
|
fill: #93c5f4;
|
|
4083
4300
|
}
|
|
4084
|
-
.inverted .bubble-chart > .elements .color2.legend
|
|
4301
|
+
.inverted .bubble-chart > .elements .color2.legend,
|
|
4302
|
+
.inverted .scatter-chart > .elements .color2.legend {
|
|
4085
4303
|
fill: #74a8d8;
|
|
4086
4304
|
}
|
|
4087
|
-
.inverted .bubble-chart > .elements .color3.legend
|
|
4305
|
+
.inverted .bubble-chart > .elements .color3.legend,
|
|
4306
|
+
.inverted .scatter-chart > .elements .color3.legend {
|
|
4088
4307
|
fill: #4c8fcd;
|
|
4089
4308
|
}
|
|
4090
|
-
.inverted .bubble-chart > .elements .color4.legend
|
|
4309
|
+
.inverted .bubble-chart > .elements .color4.legend,
|
|
4310
|
+
.inverted .scatter-chart > .elements .color4.legend {
|
|
4091
4311
|
fill: #014786;
|
|
4092
4312
|
}
|
|
4093
|
-
.inverted .bubble-chart > .elements .color5.legend
|
|
4313
|
+
.inverted .bubble-chart > .elements .color5.legend,
|
|
4314
|
+
.inverted .scatter-chart > .elements .color5.legend {
|
|
4094
4315
|
fill: #2f3c45;
|
|
4095
4316
|
}
|
|
4096
|
-
.color-alternative .bubble-chart > .elements
|
|
4317
|
+
.color-alternative .bubble-chart > .elements,
|
|
4318
|
+
.color-alternative .scatter-chart > .elements {
|
|
4097
4319
|
fill: #0DA98C;
|
|
4098
4320
|
}
|
|
4099
|
-
.color-alternative .bubble-chart > .elements .color0.legend
|
|
4321
|
+
.color-alternative .bubble-chart > .elements .color0.legend,
|
|
4322
|
+
.color-alternative .scatter-chart > .elements .color0.legend {
|
|
4100
4323
|
fill: #0da98c;
|
|
4101
4324
|
}
|
|
4102
|
-
.color-alternative .bubble-chart > .elements .color1.legend
|
|
4325
|
+
.color-alternative .bubble-chart > .elements .color1.legend,
|
|
4326
|
+
.color-alternative .scatter-chart > .elements .color1.legend {
|
|
4103
4327
|
fill: #0fc1a0;
|
|
4104
4328
|
}
|
|
4105
|
-
.color-alternative .bubble-chart > .elements .color2.legend
|
|
4329
|
+
.color-alternative .bubble-chart > .elements .color2.legend,
|
|
4330
|
+
.color-alternative .scatter-chart > .elements .color2.legend {
|
|
4106
4331
|
fill: #1fc9aa;
|
|
4107
4332
|
}
|
|
4108
|
-
.color-alternative .bubble-chart > .elements .color3.legend
|
|
4333
|
+
.color-alternative .bubble-chart > .elements .color3.legend,
|
|
4334
|
+
.color-alternative .scatter-chart > .elements .color3.legend {
|
|
4109
4335
|
fill: #67e9d1;
|
|
4110
4336
|
}
|
|
4111
|
-
.color-alternative .bubble-chart > .elements .color4.legend
|
|
4337
|
+
.color-alternative .bubble-chart > .elements .color4.legend,
|
|
4338
|
+
.color-alternative .scatter-chart > .elements .color4.legend {
|
|
4112
4339
|
fill: #bdf2e8;
|
|
4113
4340
|
}
|
|
4114
|
-
.color-alternative .bubble-chart > .elements .color5.legend
|
|
4341
|
+
.color-alternative .bubble-chart > .elements .color5.legend,
|
|
4342
|
+
.color-alternative .scatter-chart > .elements .color5.legend {
|
|
4115
4343
|
fill: #00856c;
|
|
4116
4344
|
}
|
|
4117
|
-
.color-alternative.inverted .bubble-chart > .elements
|
|
4345
|
+
.color-alternative.inverted .bubble-chart > .elements,
|
|
4346
|
+
.color-alternative.inverted .scatter-chart > .elements {
|
|
4118
4347
|
fill: #BDF2E8;
|
|
4119
4348
|
}
|
|
4120
|
-
.color-alternative.inverted .bubble-chart > .elements .color0.legend
|
|
4349
|
+
.color-alternative.inverted .bubble-chart > .elements .color0.legend,
|
|
4350
|
+
.color-alternative.inverted .scatter-chart > .elements .color0.legend {
|
|
4121
4351
|
fill: #bdf2e8;
|
|
4122
4352
|
}
|
|
4123
|
-
.color-alternative.inverted .bubble-chart > .elements .color1.legend
|
|
4353
|
+
.color-alternative.inverted .bubble-chart > .elements .color1.legend,
|
|
4354
|
+
.color-alternative.inverted .scatter-chart > .elements .color1.legend {
|
|
4124
4355
|
fill: #67e9d1;
|
|
4125
4356
|
}
|
|
4126
|
-
.color-alternative.inverted .bubble-chart > .elements .color2.legend
|
|
4357
|
+
.color-alternative.inverted .bubble-chart > .elements .color2.legend,
|
|
4358
|
+
.color-alternative.inverted .scatter-chart > .elements .color2.legend {
|
|
4127
4359
|
fill: #1fc9aa;
|
|
4128
4360
|
}
|
|
4129
|
-
.color-alternative.inverted .bubble-chart > .elements .color3.legend
|
|
4361
|
+
.color-alternative.inverted .bubble-chart > .elements .color3.legend,
|
|
4362
|
+
.color-alternative.inverted .scatter-chart > .elements .color3.legend {
|
|
4130
4363
|
fill: #0da98c;
|
|
4131
4364
|
}
|
|
4132
|
-
.color-alternative.inverted .bubble-chart > .elements .color4.legend
|
|
4365
|
+
.color-alternative.inverted .bubble-chart > .elements .color4.legend,
|
|
4366
|
+
.color-alternative.inverted .scatter-chart > .elements .color4.legend {
|
|
4133
4367
|
fill: #00856c;
|
|
4134
4368
|
}
|
|
4135
|
-
.color-alternative.inverted .bubble-chart > .elements .color5.legend
|
|
4369
|
+
.color-alternative.inverted .bubble-chart > .elements .color5.legend,
|
|
4370
|
+
.color-alternative.inverted .scatter-chart > .elements .color5.legend {
|
|
4136
4371
|
fill: #005243;
|
|
4137
4372
|
}
|
|
4138
|
-
.color-rainbow .bubble-chart > .elements
|
|
4373
|
+
.color-rainbow .bubble-chart > .elements,
|
|
4374
|
+
.color-rainbow .scatter-chart > .elements {
|
|
4139
4375
|
fill: #1561A7;
|
|
4140
4376
|
}
|
|
4141
|
-
.color-rainbow .bubble-chart > .elements .color0.legend
|
|
4377
|
+
.color-rainbow .bubble-chart > .elements .color0.legend,
|
|
4378
|
+
.color-rainbow .scatter-chart > .elements .color0.legend {
|
|
4142
4379
|
fill: #1561a7;
|
|
4143
4380
|
}
|
|
4144
|
-
.color-rainbow .bubble-chart > .elements .color1.legend
|
|
4381
|
+
.color-rainbow .bubble-chart > .elements .color1.legend,
|
|
4382
|
+
.color-rainbow .scatter-chart > .elements .color1.legend {
|
|
4145
4383
|
fill: #fe9915;
|
|
4146
4384
|
}
|
|
4147
|
-
.color-rainbow .bubble-chart > .elements .color2.legend
|
|
4385
|
+
.color-rainbow .bubble-chart > .elements .color2.legend,
|
|
4386
|
+
.color-rainbow .scatter-chart > .elements .color2.legend {
|
|
4148
4387
|
fill: #1fc9aa;
|
|
4149
4388
|
}
|
|
4150
|
-
.color-rainbow .bubble-chart > .elements .color3.legend
|
|
4389
|
+
.color-rainbow .bubble-chart > .elements .color3.legend,
|
|
4390
|
+
.color-rainbow .scatter-chart > .elements .color3.legend {
|
|
4151
4391
|
fill: #666666;
|
|
4152
4392
|
}
|
|
4153
|
-
.color-rainbow .bubble-chart > .elements .color4.legend
|
|
4393
|
+
.color-rainbow .bubble-chart > .elements .color4.legend,
|
|
4394
|
+
.color-rainbow .scatter-chart > .elements .color4.legend {
|
|
4154
4395
|
fill: #ff5555;
|
|
4155
4396
|
}
|
|
4156
|
-
.color-rainbow .bubble-chart > .elements .color5.legend
|
|
4397
|
+
.color-rainbow .bubble-chart > .elements .color5.legend,
|
|
4398
|
+
.color-rainbow .scatter-chart > .elements .color5.legend {
|
|
4157
4399
|
fill: #00856c;
|
|
4158
4400
|
}
|
|
4159
4401
|
text.line-label {
|
|
@@ -4491,6 +4733,7 @@ text.venn-legend {
|
|
|
4491
4733
|
}
|
|
4492
4734
|
/*** chart tooltip ***/
|
|
4493
4735
|
.tooltip.chart-tooltip {
|
|
4736
|
+
max-width: 400px;
|
|
4494
4737
|
--chart-tooltip-font-family: Arial, sans-serif;
|
|
4495
4738
|
--chart-tooltip-label-width: 70px;
|
|
4496
4739
|
}
|
|
@@ -4547,6 +4790,49 @@ text.venn-legend {
|
|
|
4547
4790
|
.tooltip.chart-tooltip > .tooltip-content > .attribute.title > .value {
|
|
4548
4791
|
text-align: left;
|
|
4549
4792
|
}
|
|
4793
|
+
.tooltip.chart-tooltip > .tooltip-content > table > tbody > .attribute {
|
|
4794
|
+
padding-top: 2px;
|
|
4795
|
+
padding-bottom: 2px;
|
|
4796
|
+
}
|
|
4797
|
+
.tooltip.chart-tooltip > .tooltip-content > table > tbody > .attribute:first-child {
|
|
4798
|
+
padding-top: 0;
|
|
4799
|
+
}
|
|
4800
|
+
.tooltip.chart-tooltip > .tooltip-content > table > tbody > .attribute:last-child {
|
|
4801
|
+
padding-bottom: 0;
|
|
4802
|
+
}
|
|
4803
|
+
.tooltip.chart-tooltip > .tooltip-content > table > tbody > .attribute .color-cell > .color {
|
|
4804
|
+
height: 10px;
|
|
4805
|
+
width: 10px;
|
|
4806
|
+
border-radius: 50%;
|
|
4807
|
+
margin-right: 5px;
|
|
4808
|
+
}
|
|
4809
|
+
.tooltip.chart-tooltip > .tooltip-content > table > tbody > .attribute > .label {
|
|
4810
|
+
max-width: 120px;
|
|
4811
|
+
overflow: hidden;
|
|
4812
|
+
text-overflow: ellipsis;
|
|
4813
|
+
padding-right: 10px;
|
|
4814
|
+
white-space: nowrap;
|
|
4815
|
+
font-size: 12px;
|
|
4816
|
+
padding-top: 1px;
|
|
4817
|
+
}
|
|
4818
|
+
.tooltip.chart-tooltip > .tooltip-content > table > tbody > .attribute > .value {
|
|
4819
|
+
white-space: nowrap;
|
|
4820
|
+
text-align: right;
|
|
4821
|
+
font-size: 13px;
|
|
4822
|
+
font-weight: normal;
|
|
4823
|
+
font-family: var(--chart-tooltip-font-family);
|
|
4824
|
+
padding-right: 10px;
|
|
4825
|
+
}
|
|
4826
|
+
.tooltip.chart-tooltip > .tooltip-content > table > tbody > .attribute > .value:last-child {
|
|
4827
|
+
padding-right: 0;
|
|
4828
|
+
}
|
|
4829
|
+
.tooltip.chart-tooltip > .tooltip-content > table > tbody > .attribute.title > .value {
|
|
4830
|
+
text-align: left;
|
|
4831
|
+
max-width: 120px;
|
|
4832
|
+
white-space: nowrap;
|
|
4833
|
+
overflow: hidden;
|
|
4834
|
+
text-overflow: ellipsis;
|
|
4835
|
+
}
|
|
4550
4836
|
/*
|
|
4551
4837
|
* Copyright (c) 2010-2021 BSI Business Systems Integration AG.
|
|
4552
4838
|
* All rights reserved. This program and the accompanying materials
|