Update app.py
Browse files
app.py
CHANGED
@@ -563,23 +563,23 @@ def server(input, output, session):
|
|
563 |
|
564 |
|
565 |
columns = [
|
566 |
-
{ "title": "Pitcher Name", "field": "pitcher_name", "width":
|
567 |
-
{ "title": "Team", "field": "pitcher_team", "width":
|
568 |
-
{ "title": "Last Pitched", "field": "last_pitched", "width":
|
569 |
-
{ "title": "Pitch Type", "field": "pitch_type", "width":
|
570 |
-
{ "title": "New?", "field": "new_pitch", "width":
|
571 |
-
{ "title": "Last Pitched", "field": "last_pitched", "width":
|
572 |
-
{ "title": "Pitches", "field": "count", "width":
|
573 |
{ "title": "Pitch%", "field": "pitch_percent_formatted", "width": 100,"formatter":"textarea"},
|
574 |
{ "title": "LHH%", "field": "lhh_percent_formatted", "width": 90,"formatter":"textarea"},
|
575 |
{ "title": "RHH%", "field": "rhh_percent_formatted", "width": 90,"formatter":"textarea"},
|
576 |
-
{ "title": "Velocity", "field": "start_speed_formatted", "width":
|
577 |
-
{ "title": "Max Velo", "field": "max_start_speed_formatted", "width":
|
578 |
{ "title": "iVB", "field": "ivb_formatted", "width": 75,"formatter":"textarea" },
|
579 |
{ "title": "HB", "field": "hb_formatted", "width": 75, "formatter":"textarea" },
|
580 |
{ "title": "RelH", "field": "release_pos_z_formatted", "width": 80, "formatter":"textarea" },
|
581 |
{ "title": "RelS", "field": "release_pos_x_formatted", "width": 80, "formatter":"textarea" },
|
582 |
-
{ "title": "Extension", "field": "extension_formatted", "width":
|
583 |
{ "title": "tjStuff+", "field": "tj_stuff_plus_formatted", "width": 100, "formatter":"textarea" }
|
584 |
]
|
585 |
|
|
|
563 |
|
564 |
|
565 |
columns = [
|
566 |
+
{ "title": "Pitcher Name", "field": "pitcher_name", "width": 225, "headerFilter":"input" ,"frozen":True,},
|
567 |
+
{ "title": "Team", "field": "pitcher_team", "width": 80, "headerFilter":"input" ,"frozen":True,},
|
568 |
+
{ "title": "Last Pitched", "field": "last_pitched", "width": 115, "headerFilter":"input" ,"frozen":True,},
|
569 |
+
{ "title": "Pitch Type", "field": "pitch_type", "width": 100, "headerFilter":"input" ,"frozen":True,},
|
570 |
+
{ "title": "New?", "field": "new_pitch", "width": 75, "headerFilter":"input" ,"frozen":False,},
|
571 |
+
{ "title": "Last Pitched", "field": "last_pitched", "width": 110, "headerFilter":"input" ,"frozen":True,},
|
572 |
+
{ "title": "Pitches", "field": "count", "width": 80 },
|
573 |
{ "title": "Pitch%", "field": "pitch_percent_formatted", "width": 100,"formatter":"textarea"},
|
574 |
{ "title": "LHH%", "field": "lhh_percent_formatted", "width": 90,"formatter":"textarea"},
|
575 |
{ "title": "RHH%", "field": "rhh_percent_formatted", "width": 90,"formatter":"textarea"},
|
576 |
+
{ "title": "Velocity", "field": "start_speed_formatted", "width": 80,"formatter":"textarea" },
|
577 |
+
{ "title": "Max Velo", "field": "max_start_speed_formatted", "width": 80, "formatter":"textarea" },
|
578 |
{ "title": "iVB", "field": "ivb_formatted", "width": 75,"formatter":"textarea" },
|
579 |
{ "title": "HB", "field": "hb_formatted", "width": 75, "formatter":"textarea" },
|
580 |
{ "title": "RelH", "field": "release_pos_z_formatted", "width": 80, "formatter":"textarea" },
|
581 |
{ "title": "RelS", "field": "release_pos_x_formatted", "width": 80, "formatter":"textarea" },
|
582 |
+
{ "title": "Extension", "field": "extension_formatted", "width": 100, "formatter":"textarea" },
|
583 |
{ "title": "tjStuff+", "field": "tj_stuff_plus_formatted", "width": 100, "formatter":"textarea" }
|
584 |
]
|
585 |
|