Sha256: a1d042acd0d62dabbb1103f13d954abd3e2575b0423d51e07bf967e16723622d
Contents?: true
Size: 596 Bytes
Versions: 4
Compression:
Stored size: 596 Bytes
Contents
$(function () { if (!$('#donut-chart').length) { return false; } donut (); $(window).resize (App.debounce (donut, 325)); }); function donut () { $('#donut-chart').empty (); Morris.Donut({ element: 'donut-chart', data: [ {label: 'Direct', value: 25 }, {label: 'Referrals', value: 40 }, {label: 'Search engines', value: 25 }, {label: 'Unique visitors', value: 10 } ], colors: App.chartColors, hideHover: true, formatter: function (y) { return y + "%" } }); }
Version data entries
4 entries across 3 versions & 1 rubygems