Memory Usage

32.3%
8,6,5,9,8,4,9,3,5,9

CPU Usage

140.05
4,3,5,7,12,10,4,5,11,7

Disk Usage

82.02%
1,2,1,3,2,10,4,12,7

Daily Traffic

62,201
3,12,7,9,2,3,4,5,2

IMG_43445

JPG Image

1.2mb

VID_6543

MP4 Video

24.8mb

Tax_Form

Word Document

5.5mb

Getting_Started

PDF Document

12.7mb

Introduction

PDF Document

7.7mb

IMG_43420

JPG Image

2.2mb

IMG_43447

JPG Image

3.2mb

VID_6545

AVI Video

14.8mb

Secret_Document

Word Document

4.5mb

+ Add Event

Morris Charts

Good-looking charts shouldn't be difficult

Below is the basic bar chart example.

new Morris.Bar({
  element: 'morrisBar1',
  data: [
    { y: '2006', a: 100, b: 90 },
    { y: '2007', a: 75,  b: 65 },
    { y: '2008', a: 50,  b: 40 },
    { y: '2009', a: 75,  b: 65 },
    { y: '2010', a: 50,  b: 40 },
  ],
  xkey: 'y',
  ykeys: ['a', 'b'],
  labels: ['Series A', 'Series B'],
  barColors: ['#5058AB', '#14A0C1'],
  gridTextSize: 11,
  hideHover: 'auto',
  resize: true
});
stacked: true
data: [
  { y: '2006', a: 100, b: 90, c: 80 },
  { y: '2007', a: 75,  b: 65, c: 75 },
  { y: '2008', a: 50,  b: 40, c: 45 },
  { y: '2009', a: 75,  b: 65, c: 85 },
],
ykeys: ['a', 'b', 'c'],
labels: ['Series A', 'Series B', 'Series C'],
barColors: ['#5058AB', '#14A0C1','#01CB99']

Below is the basic line chart example.

new Morris.Line({ ... );

Below is the basic area chart example.

new Morris.Area({ ... );

Below is the basic donut chart example.

new Morris.Donut({
  element: 'morrisDonut1',
  data: [
    {label: "Men", value: 12},
    {label: "Women", value: 30},
    {label: "Kids", value: 20}
  ],
  colors: ['#3D449C','#268FB2','#74DE00'],
  resize: true
});