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

@@ -3,13 +3,24 @@
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
.chart-view-container {
display: flex;
width: 100%;
.chart-parent-container {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}
.graph-container {
.actionbar-container {
width: 100%;
flex: 0 0 auto;
}
.charting-container {
display: flex;
flex: 1 1 auto;
}
.insight-container {
flex: 1 1 0;
}