Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantin committed Jun 11, 2015
1 parent a187ee3 commit 14b78da
Show file tree
Hide file tree
Showing 11 changed files with 2,313 additions and 1,134 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,9 @@ Have a questions? [Contact us](mailto:[email protected])

## [0.4.3] - 2015-05-18
### Added
- stacked bar charts
- stacked bar charts

## [0.4.4] - 2015-06-11
### Added
- fix legend plugin for stacked bar charts
- add support [parallel coordinates](http://en.wikipedia.org/wiki/Parallel_coordinates)
6 changes: 1 addition & 5 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tauCharts",
"version": "0.4.3",
"version": "0.4.4",
"homepage": "https://github.com/TargetProcess/tauCharts",
"description": "Simple charts library based on d3",
"keywords": [
Expand Down Expand Up @@ -28,9 +28,5 @@
"FileSaver.js": "https://github.com/Mavrin/FileSaver.js.git",
"fetch": "~0.6.1",
"es6-promise": "~2.0.1"
},
"resolutions": {
"d3": "~3.5.5",
"underscore": "~1.8.2"
}
}
49 changes: 46 additions & 3 deletions build/development/css/tauCharts.css
Original file line number Diff line number Diff line change
Expand Up @@ -291,16 +291,51 @@
display: block;
overflow: hidden;
}
.graphical-report__svg .place {
fill: #fff;
stroke: #000;
stroke-opacity: 0.7;
stroke-width: 0.5;
}
.graphical-report__svg .place-label {
opacity: 0.7;
font-size: 11px;
color: #000000;
letter-spacing: 0.2px;
line-height: 13px;
text-anchor: start;
}
.graphical-report__svg .place-label-countries,
.graphical-report__svg .place-label-subunits,
.graphical-report__svg .place-label-states {
fill: #777;
fill-opacity: .5;
font-size: 13px;
text-anchor: middle;
font-size: 10px;
fill: rgba(51, 36, 0, 0.65);
letter-spacing: 0.5px;
line-height: 10px;
text-transform: uppercase;
}
.graphical-report__svg .map-contour-level path {
stroke-opacity: 0.5;
stroke-linejoin: 'round';
}
.graphical-report__svg .map-contour-level-0 path {
stroke: #fbfbfb;
}
.graphical-report__svg .map-contour-level-1 path {
stroke: #fffefe;
}
.graphical-report__svg .map-contour-level-2 path {
stroke: #fdfdff;
}
.graphical-report__svg .map-contour-level-3 path {
stroke: #fdfdfd;
}
.graphical-report__svg .map-contour-level-4 path {
stroke: #ffffff;
}
.graphical-report__svg .map-contour:hover {
fill: rgba(255, 191, 0, 0.5);
}
.graphical-report__svg .axis line,
.graphical-report__svg .axis path {
Expand Down Expand Up @@ -372,6 +407,14 @@
text-transform: none;
letter-spacing: 0px;
}
.graphical-report__svg .brush .extent {
fill-opacity: .3;
stroke: #fff;
shape-rendering: crispEdges;
}
.graphical-report__svg .background {
stroke: #eee;
}
.graphical-report__dot {
opacity: 0.6;
transition: stroke-width 0.1s ease, opacity 0.1s ease;
Expand Down
2 changes: 1 addition & 1 deletion build/development/plugins/tauCharts.export.js
Original file line number Diff line number Diff line change
Expand Up @@ -5988,7 +5988,7 @@ define('../node_modules/requirejs-text/text',['module'], function (module) {
});


define('../node_modules/requirejs-text/text!print.style.css',[],function () { return 'body > * {\r\n visibility: hidden;\r\n}\r\nbody {\r\n overflow: hidden;\r\n}\r\nbody * {\r\n visibility: hidden !important;\r\n}\r\n\r\n.graphical-report__print-block {\r\n position: absolute;\r\n top: 0;\r\n left: 0;\r\n visibility: visible !important;\r\n display: block !important;\r\n width: 100%;\r\n /*height: 100%;*/\r\n}\r\n';});
define('../node_modules/requirejs-text/text!print.style.css',[],function () { return 'body > * {\n visibility: hidden;\n}\nbody {\n overflow: hidden;\n}\nbody * {\n visibility: hidden !important;\n}\n\n.graphical-report__print-block {\n position: absolute;\n top: 0;\n left: 0;\n visibility: visible !important;\n display: block !important;\n width: 100%;\n /*height: 100%;*/\n}\n';});

(function() {

Expand Down
Loading

0 comments on commit 14b78da

Please sign in to comment.