adds charts panel

This commit is contained in:
2025-02-15 15:42:33 -08:00
parent 69c0b0965d
commit e9751c2489
16 changed files with 600 additions and 42 deletions

View File

@@ -389,7 +389,7 @@ function onMouseExit(event: MouseEvent) {
</g>
<ValueLabel
v-if="current_data_point"
class="fade_other_selected"
class="fade_other_selected label"
:x="graph_data.x_map(toValue(graph_data.max_x)) + text_offset"
:y="axis_data.y_map(current_data_point.y)"
:value="current_data_point.y"
@@ -473,6 +473,10 @@ function onMouseExit(event: MouseEvent) {
opacity: 25%;
}
.fade .fade_other_selected.label {
opacity: 0;
}
.fade .no-fade .fade_other_selected {
opacity: 100%;
}