Example of a streamgraph that can be divided into multiple area charts.
This file contains hidden or 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
| var defaultDiacriticsRemovalap = [ | |
| {'base':'A', 'letters':'\u0041\u24B6\uFF21\u00C0\u00C1\u00C2\u1EA6\u1EA4\u1EAA\u1EA8\u00C3\u0100\u0102\u1EB0\u1EAE\u1EB4\u1EB2\u0226\u01E0\u00C4\u01DE\u1EA2\u00C5\u01FA\u01CD\u0200\u0202\u1EA0\u1EAC\u1EB6\u1E00\u0104\u023A\u2C6F'}, | |
| {'base':'AA','letters':'\uA732'}, | |
| {'base':'AE','letters':'\u00C6\u01FC\u01E2'}, | |
| {'base':'AO','letters':'\uA734'}, | |
| {'base':'AU','letters':'\uA736'}, | |
| {'base':'AV','letters':'\uA738\uA73A'}, | |
| {'base':'AY','letters':'\uA73C'}, | |
| {'base':'B', 'letters':'\u0042\u24B7\uFF22\u1E02\u1E04\u1E06\u0243\u0182\u0181'}, | |
| {'base':'C', 'letters':'\u0043\u24B8\uFF23\u0106\u0108\u010A\u010C\u00C7\u1E08\u0187\u023B\uA73E'}, |
This file contains hidden or 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
| $ createdb mydb | |
| $ psql -s mydb | |
| # create user someuser password 'somepassword'; | |
| # GRANT ALL PRIVILEGES ON DATABASE mydb TO someuser; |
This file contains hidden or 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
| <link rel="stylesheet" href="tab.css"> | |
| <div class="infographic infographic-tabs"> | |
| <ul class="tabs"> | |
| <li id="tab-1" class="selected">Tab 1</li> | |
| <li id="tab-2">Tab 2</li> | |
| <li id="tab-3">Tab 3</li> | |
| </ul> | |
| <div class="tabs-content"> | |
| <div id="tab-content-1"> | |
| Content from tab 1 |
This file contains hidden or 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
| /* All Smartphones in portrait and landscape ----------- */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 480px) { | |
| /* YOUR STYLE GOES HERE */ | |
| } | |
| /* All Smartphones in landscape ----------- */ | |
| @media only screen | |
| and (min-width : 321px) { |
This file contains hidden or 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
| /** | |
| * Configuração de localização em Português do Brasil(PT-BR) para o D3.js realizar formatação tempo e números | |
| * Mais detalhes conferir a documentação: https://github.com/mbostock/d3/wiki/Time-Formatting | |
| */ | |
| var localized = d3.locale({ | |
| "decimal": ",", | |
| "thousands": ".", | |
| "grouping": [3], | |
| "currency": ["R$", ""], |
This file contains hidden or 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
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
This file contains hidden or 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 hidden or 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
| var gulp = require('gulp'), | |
| gutil = require('gulp-util'), | |
| sass = require('gulp-sass'), | |
| rubysass = require('gulp-ruby-sass'), | |
| fileinclude = require('gulp-file-include'), | |
| rename = require('gulp-rename'), | |
| notify = require('gulp-notify'), | |
| livereload = require('gulp-livereload'), | |
| lr = require('tiny-lr'), | |
| connect = require('gulp-connect'), |
This file contains hidden or 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
| var gulp = require('gulp'), | |
| sass = require('gulp-ruby-sass'), | |
| gulpif = require('gulp-if'), | |
| usemin = require('gulp-usemin'), | |
| uglify = require('gulp-uglify'), | |
| gutil = require('gulp-util'), | |
| concat = require('gulp-concat'), | |
| plumber = require('gulp-plumber'), | |
| browserify = require('gulp-browserify'), | |
| minifyHTML = require('gulp-minify-html'), |
OlderNewer