Charting actions (#2411)

* working on adding charts

* working on chart options

* adding image and table insight

* add chart viewing and handle a bunch of small bugs

* formatting

* add actions to chart viewer

* formatting

* remove unimplemented function
This commit is contained in:
Anthony Dresser
2018-09-05 18:05:09 -07:00
committed by GitHub
parent f147d799e0
commit b6891850a7
11 changed files with 314 additions and 21 deletions

View File

@@ -106,6 +106,14 @@ export class Taskbar {
this.actionBar.setAriaLabel(label);
}
public length(): number {
return this.actionBar.length();
}
public pull(index: number) {
this.actionBar.pull(index);
}
/**
* Push HTMLElements and icons for IActions into the ActionBar UI. Push IActions into ActionBar's private collection.
*/