Charts in Lightning component
In one of the recent Salesforce1 Mobile app project , we need to display charts in lightning components . I researched some of the available options to accomplish same , and here i landed with some of the Javascript Charting Libraries . JustGuage (To draw Guage Chart ) ChartJS (To draw rest of the charts ) Here are the few steps to include chart in lightning components . 1. Download resource file and create static resources . 2.a. Include static resource for Guage Chart in lightning components . <aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" access="global" > <ltng:require scripts="{!join(',', $Resource.JustGuage + '/justgage-1.2.2/raphael-2.1.4.min.js', $Resource.JustGu