-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheformat.tcl
More file actions
1560 lines (1399 loc) · 56.5 KB
/
Copy patheformat.tcl
File metadata and controls
1560 lines (1399 loc) · 56.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (c) 2022-2025 Nicolas ROBERT.
# Distributed under MIT license. Please see LICENSE for details.
#
namespace eval ticklecharts {}
proc ticklecharts::formatEcharts {formattype value key type} {
# Verification of certain values (especially for string types)
# In order to respect the values according to the Echarts documentation.
#
# formattype - format type of validation.
# value - value to be verified.
# key - key flag.
# type - type of value.
#
# Returns nothing or raise an error if the value does
# not match the default values or does not exactly conform
# to a range of values.
variable echarts_version
if {$formattype eq ""} {
return {}
}
if {$type eq "str.e"} {
set value [$value get]
set type "str"
}
if {$value in {nothing null}} {
return {}
}
set nameproc [ticklecharts::getLevelProperties [expr {[info level] - 1}]]
switch -exact -- $formattype {
formatTarget {
# possible values...
set validvalue {self blank}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatTextAlign {
# possible values...
set validvalue {auto left right center}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatVerticalTextAlign {
# possible values...
set validvalue {auto top bottom middle}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatBarCategoryGap -
formatBarGap {
# possible values...
if {![regexp {^[-0-9.]+%$} $value]} {
errorEFormat "$key\($nameproc) : The gap between bars between different series,\
is a percent value like '30%', which means 30% of the bar width.\
Set barGap as '-100%' can overlap bars that belong to different series,\
which is useful when making a series of bar be background."
}
}
formatLeft {
# possible values...
lappend validvalue {^auto$|^left$|^center$|^right$}
lappend validvalue {^[0-9.]+%$}
lappend validvalue {^[0-9.]+$}
set match 0
foreach re $validvalue {
if {[regexp $re $value]} {
set match 1 ; break
}
}
if {!$match} {
errorEFormat "$key\($nameproc) : value can be instant pixel value like 20;\
it can also be a percentage value relative to container width like '20%';\
and it can also be 'auto', left', 'center', or 'right'"
}
}
formatERight -
formatELeft {
# possible values...
lappend validvalue {^left$|^center$|^right$}
lappend validvalue {^[0-9.]+%$}
lappend validvalue {^[0-9.]+$}
set match 0
foreach re $validvalue {
if {[regexp $re $value]} {
set match 1 ; break
}
}
if {!$match} {
errorEFormat "$key\($nameproc) : Pixel value. For example, can be a number 30, means 30px.\
Percent value: For example, can be a string '33%', means the final result\
should be calculated by this value and the height of its parent.\
'center': means position the element in the middle of according to its parent.\
Only one between left and right can work."
}
}
formatETop -
formatEBottom {
# possible values...
lappend validvalue {^top$|^middle$|^bottom$}
lappend validvalue {^[0-9.]+%$}
lappend validvalue {^[0-9.]+$}
set match 0
foreach re $validvalue {
if {[regexp $re $value]} {
set match 1 ; break
}
}
if {!$match} {
errorEFormat "$key\($nameproc) : Pixel value. For example, can be a number 30, means 30px.\
Percent value: For example, can be a string '33%', means the final result\
should be calculated by this value and the height of its parent.\
'middle': means position the element in the middle of according to its parent.\
Only one between top and bottom can work."
}
}
formatTop {
# possible values...
lappend validvalue {^auto$|^top$|^middle$|^bottom$}
lappend validvalue {^[0-9.]+%$}
lappend validvalue {^[0-9.]+$}
set match 0
foreach re $validvalue {
if {[regexp $re $value]} {
set match 1 ; break
}
}
if {!$match} {
errorEFormat "$key\($nameproc) value can be instant pixel value like 20;\
it can also be a percentage value relative to container width like '20%';\
and it can also be 'auto', top', 'middle', or 'bottom'"
}
}
formatBottom -
formatRight {
# possible values...
lappend validvalue {^auto$}
lappend validvalue {^[0-9.]+%$}
lappend validvalue {^[0-9.]+$}
set match 0
foreach re $validvalue {
if {[regexp $re $value]} {
set match 1 ; break
}
}
if {!$match} {
errorEFormat "$key\($nameproc) value can be instant pixel value like 20;\
it can also be a percentage value relative to container width like '20%'."
}
}
formatColor {
if {$type in {list list.e}} {
if {$type eq "list.e"} {
set value [$value get]
}
if {[llength $value] == 1} {
set value {*}$value
}
foreach val $value {
ticklecharts::formatEcharts $formattype $val $key [ticklecharts::typeOf $val]
}
}
if {$type eq "str"} {
# possible values...
lappend validvalue {^white$|^black$|^red$|^blue$|^green$|^transparent$|^inherit$|^source$|^gradient$}
lappend validvalue {^#[a-zA-Z0-9]{3,6}$}
lappend validvalue {^rgb\(\s*([0-9]+),\s*([0-9]+),\s*([0-9]+)\)$}
lappend validvalue {^rgba\(\s*([0-9]+),\s*([0-9]+),\s*([0-9]+),\s*(?:1|0?\.[0-9]+)\)$}
lappend validvalue {^hsl\(\s*(\d+)\s*,\s*(\d+(?:\.\d+)?%)\s*,\s*(\d+(?:\.\d+)?%)\)$}
lappend validvalue {^auto$}
set match 0
foreach re $validvalue {
if {[regexp $re $value]} {
set match 1 ; break
}
}
if {!$match} {
errorEFormat "$key\($nameproc). Color can be represented in RGB, for example 'rgb(128, 128, 128)'.\
RGBA can be used when you need alpha channel, for example 'rgba(128, 128, 128, 0.5)'.\
You may also use hexadecimal format, for example '#ccc'. The current value is '$value'"
}
}
}
formatFontStyle {
# possible values...
set validvalue {normal italic oblique}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatFontWeight {
# possible values...
if {$type eq "str"} {
set validvalue {normal bold bolder lighter}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatBorderType -
formatCrossStyle -
formatLineStyleType -
formatTextBorderType {
# possible values...
if {$type eq "str"} {
set validvalue {inherit solid dashed dotted}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatOverflow {
# possible values...
set validvalue {truncate break breakAll none}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatTrigger {
# possible values...
set validvalue {item axis none}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatExpandTriggerOn {
# possible values...
set validvalue {mousemove click}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatTriggerOn {
# possible values...
set validvalue {mousemove click mousemove|click none}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatRenderMode {
# possible values...
set validvalue {html richText}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatConfine {
# possible values...
if {$type eq "str"} {
set validvalue {inside top left right bottom}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatOrder {
# possible values...
set validvalue {seriesAsc seriesDesc valueAsc valueDesc}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatAxisPointerType {
# possible values...
set validvalue {line shadow none cross}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatAxisPointerAxis {
# possible values...
set validvalue {auto x y radius angle}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatAEasing {
# possible values...
# see https://echarts.apache.org/examples/en/editor.html?c=line-easing
set validvalue {
linear quadraticIn quadraticOut quadraticInOut cubicIn
cubicOut cubicInOut quarticIn quarticOut quarticInOut
quinticIn quinticOut quinticInOut sinusoidalIn sinusoidalOut
sinusoidalInOut exponentialIn exponentialOut exponentialInOut
circularIn circularOut circularInOut elasticIn elasticOut
elasticInOut backIn backOut backInOut bounceIn bounceOut
bounceInOut
}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatCap {
# possible values...
set validvalue {inherit butt round square}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatJoin {
# possible values...
set validvalue {bevel round miter}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatOpacity {
# possible values...
if {$type eq "num"} {
if {![expr {$value >= 0 && $value <= 1}]} {
errorEFormat "'$value' should be between '0' and '1'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatLegendType {
# possible values...
set validvalue {plain scroll}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatOrient {
# possible values...
set validvalue {horizontal vertical}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatAlign -
formatVisualMapAlign {
# possible values...
set validvalue {auto left right}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatSelectedMode {
# possible values...
if {$type eq "str"} {
if {[ticklecharts::vCompare $echarts_version "5.3.0"] >= 0} {
set validvalue {multiple single series}
} else {
set validvalue {multiple single}
}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatItemSymbol {
if {$type in {list list.e}} {
if {$type eq "list.e"} {
set value [$value get]
}
if {[llength $value] == 1} {
set value {*}$value
}
foreach val $value {
ticklecharts::formatEcharts $formattype $val $key [ticklecharts::typeOf $val]
}
}
# possible values...
if {$type eq "str"} {
set validvalue {emptyCircle circle rect roundRect triangle diamond pin arrow none image://* path://*}
set match 0
foreach val $validvalue {
if {[string match $val $value]} {
set match 1 ; break
}
}
if {!$match} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatColorBy {
# possible values...
set validvalue {series data}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatCSYS {
# possible values...
set validvalue {cartesian2d polar geo}
switch -exact -- [ticklecharts::whichSeries? $nameproc] {
"themeRiverSeries" {set validvalue "single"}
"parallelSeries" {set validvalue "parallel"}
"graphSeries" {append validvalue " calendar none"}
"pieSeries" {append validvalue " calendar none gmap"}
"heatmapSeries" {append validvalue " calendar gmap"}
"scatterSeries" {append validvalue " calendar gmap"}
"linesSeries" {set validvalue {cartesian2d gmap geo}}
"surfaceSeries" -
"line3DSeries" {set validvalue "cartesian3D"}
"lines3DSeries" {set validvalue {geo3D globe}}
"scatter3DSeries" -
"bar3DSeries" {set validvalue {cartesian3D geo3D globe}}
}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatSampling {
# possible values...
set validvalue {lttb average max min sum}
if {[ticklecharts::vCompare $echarts_version "5.5.0"] >= 0} {
append validvalue " minmax"
}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatPChunkMode {
# possible values...
set validvalue {sequential mod}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatSMonotone {
# possible values...
set validvalue {x y}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatPadangle -
formatStartangle {
# possible values...
if {![expr {$value >= 0 && $value <= 360}]} {
errorEFormat "'$value' should be between '0' and '360'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatEndangle {
# possible values...
if {([ticklecharts::whichSeries? $nameproc] eq "pieSeries") && ($type eq "str")} {
if {$value ne "auto"} {
errorEFormat "'$value' should be 'auto'\
for this key: '$key' in '$nameproc' level procedure."
}
} else {
if {![expr {$value <= 0 && $value >= -360}]} {
errorEFormat "'$value' should be between '0' and '-360'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatAType {
# possible values...
set validvalue {expansion scale}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatATypeUpdate {
# possible values...
set validvalue {expansion transition}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatSort {
# possible values...
if {$type eq "str"} {
set validvalue {descending ascending none desc asc}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatFunnelAlign {
# possible values...
set validvalue {center left right right}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatPosition {
# possible values...
if {$type eq "str"} {
set validvalue {
top left right bottom inside insideLeft insideRight insideTop
insideBottom insideTopLeft insideBottomLeft insideTopRight insideBottomRight
}
switch -exact -- [ticklecharts::whichSeries? $nameproc] {
"barSeries" {
if {[ticklecharts::vCompare $echarts_version "5.2.0"] >= 0} {
append validvalue " start insideStart middle insideEnd end"
}
}
"sunburstSeries" {append validvalue " outside"}
"pieSeries" {set validvalue {outside inside inner center outer}}
}
if {[string match "*calendar*" $nameproc]} {
set validvalue {start end}
}
if {[string match "*Series.markLine*" $nameproc]} {
set validvalue {
start middle end insideStart insideStartTop insideStartBottom
insideMiddle insideMiddleTop insideMiddleBottom
insideEnd insideEndTop insideEndBottom
}
}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatMoveOverlap {
# possible values...
set validvalue {shiftX shiftY}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatBlurScope {
# possible values...
set validvalue {none coordinateSystem series global}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatType {
# possible values...
set validvalue {value category time log}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatNameLocation {
# possible values...
set validvalue {start middle center end}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatShape {
# possible values...
set validvalue {polygon circle}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatEdgeShape {
# possible values...
set validvalue {curve polyline}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatXAxisPosition {
# possible values...
set validvalue {top bottom}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatYAxisPosition {
# possible values...
set validvalue {left right}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatShowAllSymbol {
# possible values...
if {$type eq "str"} {
set validvalue {auto}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatCursor {
# possible values...
set validvalue {
pointer crosshair help move progress text wait e-resize
ne-resize nw-resize n-resize se-resize sw-resize s-resize w-resize
}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatBounding {
# possible values...
set validvalue {all raw}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatFocus {
# possible values...
set validvalue {none self series ancestor descendant adjacency}
if {[ticklecharts::whichSeries? $nameproc] eq "treeSeries"} {
if {[ticklecharts::vCompare $echarts_version "5.3.3"] >= 0} {
set validvalue {none ancestor descendant relative}
} else {
set validvalue {none ancestor descendant}
}
}
if {[ticklecharts::whichSeries? $nameproc] eq "sankeySeries"} {
if {[ticklecharts::vCompare $echarts_version "5.4.3"] >= 0} {
set validvalue {none self series adjacency trajectory}
} else {
set validvalue {none self series adjacency}
}
}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatShapeSmooth {
# possible values...
if {$type eq "str"} {
set validvalue {spline}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatDivideShape {
# possible values...
set validvalue {split clone}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatInterval {
# possible values...
if {$type eq "str"} {
set validvalue {auto}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatAlignTo {
# possible values...
set validvalue {none labelLine edge}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatRoseType {
# possible values...
if {$type eq "str"} {
set validvalue {radius area}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatStep {
# possible values...
if {$type eq "str"} {
set validvalue {start middle end}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatEdgeLabelPosition {
# possible values...
set validvalue {start middle end}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatEbrushType {
# possible values...
set validvalue {stroke fill}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatRenderer {
# possible values...
set validvalue {canvas svg}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatSaveAsImg {
# possible values...
set validvalue {png jpg svg}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatFilterMode {
# possible values...
set validvalue {filter weakFilter empty none}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatTextPosition {
# possible values...
set validvalue {left right top bottom}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatNodeClick {
# possible values...
set validvalue {rootToNode link}
if {[ticklecharts::whichSeries? $nameproc] eq "treemapSeries"} {
set validvalue {link zoomToNode}
}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatRotate {
# possible values...
if {$type eq "str"} {
set validvalue {radial tangential}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
} elseif {$type eq "num"} {
if {![expr {$value >= -90 && $value <= 90}]} {
errorEFormat "'$value' should be between '-90' and '90'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatLayout {
# possible values...
set validvalue {orthogonal radial}
if {[ticklecharts::whichSeries? $nameproc] eq "graphSeries"} {
set validvalue {none circular force}
}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatTreeOrient {
# possible values...
set validvalue {LR RL TB BT}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatEForkPosition {
# possible values...
if {![regexp {^[0-9.]+%$} $value]} {
errorEFormat "'$value' should be be between\['0%', '100%'\]\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatRoam {
# possible values...
if {$type eq "str"} {
set validvalue {scale move}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatNodeAlign {
# possible values...
set validvalue {left right justify}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatMaxMin {
# possible values...
if {![expr {$value >= 0 && $value <= 100}]} {
errorEFormat "'$value' should be between '0' and '100'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatZoomMW {
# possible values...
if {$type eq "str"} {
set validvalue {shift ctrl alt}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatTransform {
# possible values...
set validvalue {filter sort ecSimpleTransform:aggregate ecStat:regression boxplot}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatDimType {
# possible values...
set validvalue {number float int ordinal time}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatSeriesLayout {
# possible values...
set validvalue {row column}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
formatSourceHeader {
# possible values...
if {$type eq "str"} {
set validvalue {undefined auto}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\
for this key: '$key' in '$nameproc' level procedure."
}
}
}
formatSymbolPosition {
# possible values...
set validvalue {start end center}
if {$value ni $validvalue} {
errorEFormat "'$value' should be '[eFormat $validvalue]'\