diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-08-20 23:22:41 -0400 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2024-08-20 23:22:41 -0400 |
commit | c28390cedfc909ff8e96e4527b75699e1529410c (patch) | |
tree | 44e06e683520f9756c040ec5aaca67e294d1c9ef /src/client/views/nodes/DataVizBox/DataVizBox.tsx | |
parent | c38c1a0ab495ca7f465fc608ac9528734cb81ef1 (diff) |
work on fields dashboard
Diffstat (limited to 'src/client/views/nodes/DataVizBox/DataVizBox.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/DataVizBox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/DataVizBox.tsx b/src/client/views/nodes/DataVizBox/DataVizBox.tsx index 6a5103af9..c0b05b082 100644 --- a/src/client/views/nodes/DataVizBox/DataVizBox.tsx +++ b/src/client/views/nodes/DataVizBox/DataVizBox.tsx @@ -129,7 +129,8 @@ export class DataVizBox extends ViewBoxAnnotatableComponent<FieldViewProps>() { } selectAxes = (axes: string[]) => { this.layoutDoc._dataViz_axes = new List<string>(axes); - DocCreatorMenu.Instance.generateTemplates(''); + //axes.forEach(axis => console.log(axis)) + //DocCreatorMenu.Instance.generateTemplates(''); }; @computed.struct get titleCol() { return StrCast(this.layoutDoc._dataViz_titleCol); |