@@ -513,6 +513,18 @@ class SmoothLinearTemplate(Template):
513
513
"field" : "rev" ,
514
514
"type" : "nominal" ,
515
515
},
516
+ "tooltip" : [
517
+ {
518
+ "field" : Template .anchor ("x" ),
519
+ "title" : Template .anchor ("x_label" ),
520
+ "type" : "quantitative" ,
521
+ },
522
+ {
523
+ "field" : Template .anchor ("y" ),
524
+ "title" : Template .anchor ("y_label" ),
525
+ "type" : "quantitative" ,
526
+ },
527
+ ],
516
528
},
517
529
"transform" : [
518
530
{
@@ -523,18 +535,50 @@ class SmoothLinearTemplate(Template):
523
535
},
524
536
],
525
537
},
538
+ {
539
+ "mark" : {"type" : "line" , "opacity" : 0.2 },
540
+ "encoding" : {
541
+ "x" : {
542
+ "field" : Template .anchor ("x" ),
543
+ "type" : "quantitative" ,
544
+ "title" : Template .anchor ("x_label" ),
545
+ },
546
+ "y" : {
547
+ "field" : Template .anchor ("y" ),
548
+ "type" : "quantitative" ,
549
+ "title" : Template .anchor ("y_label" ),
550
+ "scale" : {"zero" : False },
551
+ },
552
+ "color" : {"field" : "rev" , "type" : "nominal" },
553
+ "tooltip" : [
554
+ {
555
+ "field" : Template .anchor ("x" ),
556
+ "title" : Template .anchor ("x_label" ),
557
+ "type" : "quantitative" ,
558
+ },
559
+ {
560
+ "field" : Template .anchor ("y" ),
561
+ "title" : Template .anchor ("y_label" ),
562
+ "type" : "quantitative" ,
563
+ },
564
+ ],
565
+ },
566
+ },
526
567
{
527
568
"mark" : {
528
- "type" : "point" ,
529
- "tooltip" : {"content" : "data" },
569
+ "type" : "circle" ,
570
+ "size" : 10 ,
571
+ "tooltip" : {"content" : "encoding" },
530
572
},
531
573
"encoding" : {
532
574
"x" : {
575
+ "aggregate" : "max" ,
533
576
"field" : Template .anchor ("x" ),
534
577
"type" : "quantitative" ,
535
578
"title" : Template .anchor ("x_label" ),
536
579
},
537
580
"y" : {
581
+ "aggregate" : {"argmax" : Template .anchor ("x" )},
538
582
"field" : Template .anchor ("y" ),
539
583
"type" : "quantitative" ,
540
584
"title" : Template .anchor ("y_label" ),
0 commit comments