forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial cut at adding Gantt chart visualization
- Loading branch information
Brad Anderson
committed
Apr 27, 2018
1 parent
3f48c00
commit be07d1d
Showing
23 changed files
with
938 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
.gantt-chart-container { | ||
pointer-events: all; | ||
} | ||
|
||
.wf-gantt-bar { | ||
cursor: default !important; | ||
} | ||
|
||
.wf-gantt-x-axis { | ||
pointer-events: all; | ||
} | ||
|
||
.gantt-chart .x.axis .tick line { | ||
stroke: #a1a1a1; | ||
stroke-dasharray: 2, 5; | ||
} | ||
|
||
.gantt-chart .y.axis .tick text { | ||
fill: #434343; | ||
font-weight: bold; | ||
} | ||
|
||
.gantt-chart .y.axis .domain { | ||
visibility: hidden; | ||
} | ||
|
||
.wf-gantt-chart { | ||
max-height: 550px; | ||
overflow-y: scroll; | ||
overflow-x: hidden; | ||
} | ||
|
||
|
||
/* Gant chart styles*/ | ||
|
||
.axis path, | ||
.axis line { | ||
fill: none; | ||
stroke: #8994a0; | ||
shape-rendering: crispEdges; | ||
} | ||
|
||
.wf-legend-item-text { | ||
font-size: 12px; | ||
} | ||
|
||
.pane { | ||
fill: none; | ||
pointer-events: all; | ||
} | ||
|
||
.gantt-chart-container { | ||
pointer-events: all; | ||
} | ||
|
||
.wf-gantt-bar { | ||
cursor: default !important; | ||
} | ||
|
||
.wf-gantt-x-axis { | ||
pointer-events: all; | ||
} | ||
|
||
.gantt-chart .x.axis .tick line { | ||
stroke: #a1a1a1; | ||
stroke-dasharray: 2, 5; | ||
} | ||
|
||
.gantt-chart .y.axis .tick text { | ||
fill: #434343; | ||
font-weight: bold; | ||
} | ||
|
||
.gantt-chart .y.axis .domain { | ||
visibility: hidden; | ||
} | ||
|
||
.wf-gantt-chart { | ||
max-height: 550px; | ||
overflow-y: scroll; | ||
overflow-x: hidden; | ||
} | ||
|
||
.c3-tooltip-container { | ||
background-color: #fff; | ||
border: 1px solid #999; | ||
border-radius: 2px; | ||
padding: 0.2em; | ||
} | ||
|
||
.c3-tooltip-container th,td { | ||
font-size: 80%; | ||
padding: 0.2em; | ||
} |
Oops, something went wrong.