Ext.js – Area Chart
Ext.js Area chart is used for representing data in the Area graph format. It is a Cartesian Chart. Syntax Following is a simple syntax. Ext.create('Ext.chart.CartesianChart',{ series: [{ type: 'area', xField:…
Ext.js Area chart is used for representing data in the Area graph format. It is a Cartesian Chart. Syntax Following is a simple syntax. Ext.create('Ext.chart.CartesianChart',{ series: [{ type: 'area', xField:…
Ext.js Bar chart is used for representing data in the Bar graph format. It is a Cartesian Chart. Syntax Following is a simple syntax. Ext.create('Ext.chart.CartesianChart',{ series: [{ type: 'bar', xField:…
Ext.js - Line Chart is used for representing data in the Line graph format. It is a Cartesian Chart. Syntax Following is a simple syntax. Ext.create('Ext.chart.CartesianChart',{ series: [{ type: 'line',…
Ext.js - Pie chart is used for representing data in the pie graph format. It is a polar chart. Syntax Following is a simple syntax. Ext.create('Ext.chart.PolarChart', { series: [{ Type:…
Ext.js - Yes NO Cancel Box is like a confirm box which asks the user for some confirmation, such as whether the user wants to do the task or decline…
Ext.js - Multiline User Input Box is also like the prompt box but it allows THE user to enter multiline information instead of just one line. Syntax Following is a…
This message box prompts for user input. It is a single line user input.So all the details of Ext.js Prompt Box given below- Syntax Following is a simple syntax. Ext.Msg.prompt('Name',…
Ext.js - Confirm Box is message box asks for user confirmation and different methods called on different options the user selects as yes or no. Syntax Following is a simple…
This is the simplest alert box just to show some information on some event in Ext.js - Basic Alert Box. Syntax Following is a simple syntax for basic alert box.…
This Ext.js Progress Bar is used to show the progress of the work done and to show that the backend work is still in progress, hence wait until its done.…