toggle and scale dotplot

This commit is contained in:
Colin Megill
2021-07-26 13:23:21 -07:00
parent 2462d4afb1
commit c2b12abe2b
8 changed files with 42 additions and 15 deletions
+6
View File
@@ -16,6 +16,12 @@ const Dotplot = (
...state,
column: action.data,
};
case "toggle dotplot":
return {
...state,
row: null,
column: null,
};
default:
return state;
}