@pie-element/graphing 3.5.4-next.1169 → 3.5.4-next.1173
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/configure/lib/configure.js +3 -0
- package/configure/lib/configure.js.map +1 -1
- package/configure/lib/defaults.js +191 -0
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/graphing-config.js +90 -35
- package/configure/lib/graphing-config.js.map +1 -1
- package/docs/config-schema.json +553 -1
- package/docs/config-schema.json.md +349 -1
- package/docs/pie-schema.json +337 -129
- package/docs/pie-schema.json.md +212 -80
- package/package.json +2 -2
package/docs/pie-schema.json.md
CHANGED
|
@@ -455,6 +455,218 @@ Indicates the maximum value for the graph width and height
|
|
|
455
455
|
|
|
456
456
|
Indicates the increase/decrease value for the graph width and height
|
|
457
457
|
|
|
458
|
+
## `GridConfigurationsProp` (object)
|
|
459
|
+
|
|
460
|
+
Properties of the `GridConfigurationsProp` object:
|
|
461
|
+
|
|
462
|
+
### `label` (string)
|
|
463
|
+
|
|
464
|
+
Indicates the label for the configuration
|
|
465
|
+
|
|
466
|
+
### `arrows` (object)
|
|
467
|
+
|
|
468
|
+
Properties of the `arrows` object:
|
|
469
|
+
|
|
470
|
+
#### `left` (boolean, required)
|
|
471
|
+
|
|
472
|
+
Indicates if left arrow is enabled
|
|
473
|
+
|
|
474
|
+
#### `right` (boolean, required)
|
|
475
|
+
|
|
476
|
+
Indicates if right arrow is enabled
|
|
477
|
+
|
|
478
|
+
#### `up` (boolean, required)
|
|
479
|
+
|
|
480
|
+
Indicates if up arrow is enabled
|
|
481
|
+
|
|
482
|
+
#### `down` (boolean, required)
|
|
483
|
+
|
|
484
|
+
Indicates if down arrow is enabled
|
|
485
|
+
|
|
486
|
+
### `domain` (object, required)
|
|
487
|
+
|
|
488
|
+
Properties of the `domain` object:
|
|
489
|
+
|
|
490
|
+
#### `min` (number, required)
|
|
491
|
+
|
|
492
|
+
Min value
|
|
493
|
+
|
|
494
|
+
#### `max` (number, required)
|
|
495
|
+
|
|
496
|
+
Max value
|
|
497
|
+
|
|
498
|
+
#### `padding` (number, required)
|
|
499
|
+
|
|
500
|
+
Padding value
|
|
501
|
+
|
|
502
|
+
#### `step` (number, required)
|
|
503
|
+
|
|
504
|
+
Step value
|
|
505
|
+
|
|
506
|
+
#### `labelStep` (number, required)
|
|
507
|
+
|
|
508
|
+
Label step value
|
|
509
|
+
|
|
510
|
+
#### `axisLabel` (string, required)
|
|
511
|
+
|
|
512
|
+
Axis Label
|
|
513
|
+
|
|
514
|
+
### `graph` (object, required)
|
|
515
|
+
|
|
516
|
+
Properties of the `graph` object:
|
|
517
|
+
|
|
518
|
+
#### `width` (number, required)
|
|
519
|
+
|
|
520
|
+
Width for graph representation
|
|
521
|
+
|
|
522
|
+
#### `height` (number, required)
|
|
523
|
+
|
|
524
|
+
Height for graph representation
|
|
525
|
+
|
|
526
|
+
### `includeAxes` (boolean)
|
|
527
|
+
|
|
528
|
+
Indicates if the graph axes and labels are enabled
|
|
529
|
+
|
|
530
|
+
### `labels` (object)
|
|
531
|
+
|
|
532
|
+
Properties of the `labels` object:
|
|
533
|
+
|
|
534
|
+
#### `top` (string, required)
|
|
535
|
+
|
|
536
|
+
Label for top side of the graph
|
|
537
|
+
|
|
538
|
+
#### `bottom` (string, required)
|
|
539
|
+
|
|
540
|
+
Label for bottom side of the graph
|
|
541
|
+
|
|
542
|
+
#### `left` (string, required)
|
|
543
|
+
|
|
544
|
+
Label for left side of the graph
|
|
545
|
+
|
|
546
|
+
#### `right` (string, required)
|
|
547
|
+
|
|
548
|
+
Label for right side of the graph
|
|
549
|
+
|
|
550
|
+
### `padding` (boolean)
|
|
551
|
+
|
|
552
|
+
Indicates if padding is enabled
|
|
553
|
+
|
|
554
|
+
### `range` (object, required)
|
|
555
|
+
|
|
556
|
+
Properties of the `range` object:
|
|
557
|
+
|
|
558
|
+
#### `min` (number, required)
|
|
559
|
+
|
|
560
|
+
Min value
|
|
561
|
+
|
|
562
|
+
#### `max` (number, required)
|
|
563
|
+
|
|
564
|
+
Max value
|
|
565
|
+
|
|
566
|
+
#### `padding` (number, required)
|
|
567
|
+
|
|
568
|
+
Padding value
|
|
569
|
+
|
|
570
|
+
#### `step` (number, required)
|
|
571
|
+
|
|
572
|
+
Step value
|
|
573
|
+
|
|
574
|
+
#### `labelStep` (number, required)
|
|
575
|
+
|
|
576
|
+
Label step value
|
|
577
|
+
|
|
578
|
+
#### `axisLabel` (string, required)
|
|
579
|
+
|
|
580
|
+
Axis Label
|
|
581
|
+
|
|
582
|
+
### `standardGrid` (boolean)
|
|
583
|
+
|
|
584
|
+
Indicates if some domain values will be synched to the range values
|
|
585
|
+
|
|
586
|
+
### `title` (string)
|
|
587
|
+
|
|
588
|
+
Indicates graph title
|
|
589
|
+
|
|
590
|
+
## `Arrows` (object)
|
|
591
|
+
|
|
592
|
+
Properties of the `Arrows` object:
|
|
593
|
+
|
|
594
|
+
### `left` (boolean, required)
|
|
595
|
+
|
|
596
|
+
Indicates if left arrow is enabled
|
|
597
|
+
|
|
598
|
+
### `right` (boolean, required)
|
|
599
|
+
|
|
600
|
+
Indicates if right arrow is enabled
|
|
601
|
+
|
|
602
|
+
### `up` (boolean, required)
|
|
603
|
+
|
|
604
|
+
Indicates if up arrow is enabled
|
|
605
|
+
|
|
606
|
+
### `down` (boolean, required)
|
|
607
|
+
|
|
608
|
+
Indicates if down arrow is enabled
|
|
609
|
+
|
|
610
|
+
## `GraphSettings` (object)
|
|
611
|
+
|
|
612
|
+
Properties of the `GraphSettings` object:
|
|
613
|
+
|
|
614
|
+
### `min` (number, required)
|
|
615
|
+
|
|
616
|
+
Min value
|
|
617
|
+
|
|
618
|
+
### `max` (number, required)
|
|
619
|
+
|
|
620
|
+
Max value
|
|
621
|
+
|
|
622
|
+
### `padding` (number, required)
|
|
623
|
+
|
|
624
|
+
Padding value
|
|
625
|
+
|
|
626
|
+
### `step` (number, required)
|
|
627
|
+
|
|
628
|
+
Step value
|
|
629
|
+
|
|
630
|
+
### `labelStep` (number, required)
|
|
631
|
+
|
|
632
|
+
Label step value
|
|
633
|
+
|
|
634
|
+
### `axisLabel` (string, required)
|
|
635
|
+
|
|
636
|
+
Axis Label
|
|
637
|
+
|
|
638
|
+
## `Graph` (object)
|
|
639
|
+
|
|
640
|
+
Properties of the `Graph` object:
|
|
641
|
+
|
|
642
|
+
### `width` (number, required)
|
|
643
|
+
|
|
644
|
+
Width for graph representation
|
|
645
|
+
|
|
646
|
+
### `height` (number, required)
|
|
647
|
+
|
|
648
|
+
Height for graph representation
|
|
649
|
+
|
|
650
|
+
## `Labels` (object)
|
|
651
|
+
|
|
652
|
+
Properties of the `Labels` object:
|
|
653
|
+
|
|
654
|
+
### `top` (string, required)
|
|
655
|
+
|
|
656
|
+
Label for top side of the graph
|
|
657
|
+
|
|
658
|
+
### `bottom` (string, required)
|
|
659
|
+
|
|
660
|
+
Label for bottom side of the graph
|
|
661
|
+
|
|
662
|
+
### `left` (string, required)
|
|
663
|
+
|
|
664
|
+
Label for left side of the graph
|
|
665
|
+
|
|
666
|
+
### `right` (string, required)
|
|
667
|
+
|
|
668
|
+
Label for right side of the graph
|
|
669
|
+
|
|
458
670
|
## `LabelsConfigProp` (object)
|
|
459
671
|
|
|
460
672
|
Properties of the `LabelsConfigProp` object:
|
|
@@ -676,83 +888,3 @@ Indicates x coordinate
|
|
|
676
888
|
### `y` (number, required)
|
|
677
889
|
|
|
678
890
|
Indicates y coordinate
|
|
679
|
-
|
|
680
|
-
## `Arrows` (object)
|
|
681
|
-
|
|
682
|
-
Properties of the `Arrows` object:
|
|
683
|
-
|
|
684
|
-
### `left` (boolean, required)
|
|
685
|
-
|
|
686
|
-
Indicates if left arrow is enabled
|
|
687
|
-
|
|
688
|
-
### `right` (boolean, required)
|
|
689
|
-
|
|
690
|
-
Indicates if right arrow is enabled
|
|
691
|
-
|
|
692
|
-
### `up` (boolean, required)
|
|
693
|
-
|
|
694
|
-
Indicates if up arrow is enabled
|
|
695
|
-
|
|
696
|
-
### `down` (boolean, required)
|
|
697
|
-
|
|
698
|
-
Indicates if down arrow is enabled
|
|
699
|
-
|
|
700
|
-
## `GraphSettings` (object)
|
|
701
|
-
|
|
702
|
-
Properties of the `GraphSettings` object:
|
|
703
|
-
|
|
704
|
-
### `min` (number, required)
|
|
705
|
-
|
|
706
|
-
Min value
|
|
707
|
-
|
|
708
|
-
### `max` (number, required)
|
|
709
|
-
|
|
710
|
-
Max value
|
|
711
|
-
|
|
712
|
-
### `padding` (number, required)
|
|
713
|
-
|
|
714
|
-
Padding value
|
|
715
|
-
|
|
716
|
-
### `step` (number, required)
|
|
717
|
-
|
|
718
|
-
Step value
|
|
719
|
-
|
|
720
|
-
### `labelStep` (number, required)
|
|
721
|
-
|
|
722
|
-
Label step value
|
|
723
|
-
|
|
724
|
-
### `axisLabel` (string, required)
|
|
725
|
-
|
|
726
|
-
Axis Label
|
|
727
|
-
|
|
728
|
-
## `Graph` (object)
|
|
729
|
-
|
|
730
|
-
Properties of the `Graph` object:
|
|
731
|
-
|
|
732
|
-
### `width` (number, required)
|
|
733
|
-
|
|
734
|
-
Width for graph representation
|
|
735
|
-
|
|
736
|
-
### `height` (number, required)
|
|
737
|
-
|
|
738
|
-
Height for graph representation
|
|
739
|
-
|
|
740
|
-
## `Labels` (object)
|
|
741
|
-
|
|
742
|
-
Properties of the `Labels` object:
|
|
743
|
-
|
|
744
|
-
### `top` (string, required)
|
|
745
|
-
|
|
746
|
-
Label for top side of the graph
|
|
747
|
-
|
|
748
|
-
### `bottom` (string, required)
|
|
749
|
-
|
|
750
|
-
Label for bottom side of the graph
|
|
751
|
-
|
|
752
|
-
### `left` (string, required)
|
|
753
|
-
|
|
754
|
-
Label for left side of the graph
|
|
755
|
-
|
|
756
|
-
### `right` (string, required)
|
|
757
|
-
|
|
758
|
-
Label for right side of the graph
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"repository": "pie-framework/pie-elements",
|
|
7
|
-
"version": "3.5.4-next.
|
|
7
|
+
"version": "3.5.4-next.1173+4a7d92621",
|
|
8
8
|
"description": "",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"author": "",
|
|
26
26
|
"license": "ISC",
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "4a7d92621cbdbfb2863d7df7073627647770daf7",
|
|
28
28
|
"main": "lib/index.js",
|
|
29
29
|
"module": "src/index.js"
|
|
30
30
|
}
|