Dashboard
Mailbox
Cards & Widgets
UI Elements
Navigation
Charts
Forms
Tables
Maps
Utilities
Apps & Pages
Layouts
Sitemap

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
Sound Notification

Play an alert sound everytime there is a new notification.

2 Steps Verification

Sign in using a two step verification by sending a verification code to your phone.

Location Services

Allowing us to access your location

Newsletter Subscription

Enables you to send us news and updates send straight to your email.

Your email

Sparkline

This jQuery plugin generates sparklines (small inline charts) directly in the browser using data supplied either inline in the HTML, or via javascript.

Line Chart

An example of a simple line chart with one series.

1,4,4,7,5,9,10,1,4,4,7,5,9,10
1,4,4,7,5,9,10,1,4,4,7,5,9,10

HTML Code

<span id="sparkline1">1,4,4,7,5,9,10,1,4,4,7,5,9,10</span>

Javascript Code

$('#sparkline1').sparkline('html', {
  width: '100%',
  height: 70,
  lineColor: '#0083CD',
  fillColor: false
});
Area Chart

An example of a simple line chart with one series.

1,4,4,7,5,9,10,1,4,4,7,5,9,10
1,4,4,7,5,9,10,1,4,4,7,5,9,10

Option Code

lineColor: '#0083CD',
fillColor: 'rgba(0,131,205,0.2)'
Bar Chart

An example of a simple bar chart with one series.

3,4,4,7,5,9,10,6,4,4,7,5,9,10
3,4,4,7,5,9,10,6,4,4,7,5,9,10

Source Code

$('#sparkline5').sparkline('html', {
  type: 'bar',
  barWidth: 10,
  height: 70,
  barColor: '#0083CD',
  chartRangeMax: 12
});
Stacked Bar Chart

An example of a stacked bar chart with two series.

7,8,10,7,5,9,10,6,9,4,7,5,9,10,8
3,4,4,7,5,9,10,6,4,4,7,5,9,10,8

Source Code

$('#sparkline7').sparkline('html', {
  type: 'bar',
  barWidth: 10,
  height: 70,
  barColor: '#0083CD',
  chartRangeMax: 12
});

$('#sparkline7').sparkline([4,5,6,7,4,5,8,7,6,6,4,7,6,4,7], {
  composite: true,
  type: 'bar',
  barWidth: 10,
  height: 70,
  barColor: '#11546F',
  chartRangeMax: 12
});
Pie Chart

An example of a pie chart with two series.

7,8,10
3,4,4,7,5,9,10,6

Source Code

$('#sparkline9').sparkline('html', {
  type: 'pie',
  height: 70,
  sliceColors: ['#F4C62B', '#F6931E', '#8CC63E']
});