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

Chart JS

Simple, clean and engaging HTML5 based JavaScript charts. An easy way to include animated, interactive graphs on your website.

Bar Chart

Below is the basic bar chart example.

Javascript Code

var ctx = document.getElementById('chartBar1').getContext('2d');
new Chart(ctx, {
  type: 'bar',
  data: {
    labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
    datasets: [{
      label: '# of Votes',
      data: [12, 39, 20, 10, 25, 18],
      backgroundColor: '#27AAC8'
    }]
  },
  options: {
    legend: {
      display: false,
        labels: {
          display: false
        }
    },
    scales: {
      yAxes: [{
        ticks: {
          beginAtZero:true,
          fontSize: 10,
          max: 80
        }
      }],
      xAxes: [{
        ticks: {
          beginAtZero:true,
          fontSize: 11
        }
      }]
    }
  }
});

Multiple Color Code

backgroundColor: [
  '#29B0D0',
  '#2A516E',
  '#F07124',
  '#CBE0E3',
  '#979193'
]
Horizontal Bar Chart

Below is the horizontal bar chart type example.

Horizontal Type Code

type: 'horizontalBar'
Stacked Bar Chart

Below are the vertical and horizontal bar chart example.

Source Code

scales: {
  yAxes: [{
    stacked: true
  }],
  xAxes: [{
    stacked: true
  }]
}
Line Chart

Below is the basic line chart example.

Source Code

type: 'line'
Area Chart

Below is the basic an area chart example.

Source Code

datasets: [{
  data: [12, 39, 20, 10, 25, 18],
  fill: true,
}]
Specific Grid Line Color

Below are an example of specific grid line coloring.

Source Code

options: {
  scales: {
    yAxes: [{
      gridLines: {
        color: ['', '', '#cc0000'] // the line color series
      }
    }]
  }
}
Pie & Donut Chart

Below are an example of data in a pie and donut chart.

Source Code

var pie = document.getElementById('chartDonut');
var myPieChart = new Chart(pie, {
  type: 'pie',
  data: data,
  options: option
});

Source Code

var pie = document.getElementById('chartDonut');
var myPieChart = new Chart(pie, {
  type: 'doughnut',
  data: data,
  options: option
});