123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define("/charts/morris", ["jquery", "Site"], factory);
- } else if (typeof exports !== "undefined") {
- factory(require("jquery"), require("Site"));
- } else {
- var mod = {
- exports: {}
- };
- factory(global.jQuery, global.Site);
- global.chartsMorris = mod.exports;
- }
- })(this, function (_jquery, _Site) {
- "use strict";
- _jquery = babelHelpers.interopRequireDefault(_jquery);
- (0, _jquery.default)(document).ready(function ($$$1) {
- (0, _Site.run)();
- }); // Example Morris Line
- // -------------------
- (function () {
- Morris.Line({
- element: 'exampleMorrisLine',
- data: [{
- "y": "2015 Q3",
- "a": 40,
- "b": 100
- }, {
- "y": "2015 Q2",
- "a": 75,
- "b": 165
- }, {
- "y": "2015 Q1",
- "a": 150,
- "b": 240
- }, {
- "y": "2014 Q4",
- "a": 100,
- "b": 270
- }, {
- "y": "2013 Q4",
- "a": 260,
- "b": 300
- }, {
- "y": "2012 Q4",
- "a": 20,
- "b": 225
- }, {
- "y": "2011 Q4",
- "a": 295,
- "b": 110
- }],
- xkey: 'y',
- ykeys: ['a', 'b'],
- labels: ['Series A', 'Series B'],
- resize: true,
- pointSize: 3,
- smooth: true,
- gridTextColor: '#474e54',
- gridLineColor: '#eef0f2',
- goalLineColors: '#e3e6ea',
- gridTextFamily: Config.get('fontFamily'),
- gridTextWeight: '300',
- numLines: 7,
- gridtextSize: 14,
- lineWidth: 1,
- lineColors: [Config.colors("green", 600), Config.colors("primary", 600)]
- });
- })(); // Example Morris Area
- // -------------------
- (function () {
- Morris.Area({
- element: 'exampleMorrisArea',
- data: [{
- y: '6',
- a: 270,
- b: 160
- }, {
- y: '7',
- a: 210,
- b: 110
- }, {
- y: '8',
- a: 240,
- b: 130
- }, {
- y: '9',
- a: 280,
- b: 250
- }, {
- y: '10',
- a: 210,
- b: 140
- }, {
- y: '11',
- a: 150,
- b: 90
- }, {
- y: '12',
- a: 290,
- b: 180
- }, {
- y: '13',
- a: 280,
- b: 240
- }],
- xkey: 'y',
- ykeys: ['a', 'b'],
- labels: ['Series A', 'Series B'],
- behaveLikeLine: true,
- ymax: 300,
- resize: true,
- pointSize: 3,
- smooth: true,
- gridTextColor: '#474e54',
- gridLineColor: '#eef0f2',
- goalLineColors: '#e3e6ea',
- gridTextFamily: Config.get('fontFamily'),
- gridTextWeight: '300',
- numLines: 7,
- gridtextSize: 14,
- lineWidth: 1,
- fillOpacity: 0.1,
- lineColors: [Config.colors("primary", 600), Config.colors("green", 600)]
- });
- })(); // Example Morris Bar
- // ------------------
- (function () {
- Morris.Bar({
- element: 'exampleMorrisBar',
- data: [{
- y: '2013-6',
- a: 350,
- b: 410
- }, {
- y: '2013-7',
- a: 110,
- b: 300
- }, {
- y: '2013-8',
- a: 460,
- b: 130
- }, {
- y: '2013-9',
- a: 250,
- b: 310 // { y: '2013-10', a: 50, b: 40 },
- // { y: '2013-11', a: 75, b: 65 },
- // { y: '2013-12', a: 100, b: 90 }
- }],
- xkey: 'y',
- ykeys: ['a', 'b'],
- labels: ['Series A', 'Series B'],
- barGap: 6,
- barSizeRatio: 0.35,
- smooth: true,
- gridTextColor: '#474e54',
- gridLineColor: '#eef0f2',
- goalLineColors: '#e3e6ea',
- gridTextFamily: Config.get('fontFamily'),
- gridTextWeight: '300',
- numLines: 6,
- gridtextSize: 14,
- resize: true,
- barColors: [Config.colors("red", 500), Config.colors("blue-grey", 300)]
- });
- })(); // Example Morris Donut
- // --------------------
- (function () {
- Morris.Donut({
- element: 'exampleMorrisDonut',
- data: [{
- label: "Download Sales",
- value: 35
- }, {
- label: "In-Store Sales",
- value: 48
- }, {
- label: "Mail-Order Sales",
- value: 22
- }],
- // barSizeRatio: 0.35,
- resize: true,
- colors: [Config.colors("red", 500), Config.colors("primary", 500), Config.colors("blue-grey", 300)]
- });
- })();
- });
|