jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
84 lines (77 loc) • 4 kB
HTML
<html lang="en">
<head>
<title id='Description'>Custom Element Chart FluidSize</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" />
<meta name="description" content="This is an example of different types of Funnel chart in Custom Element Chart." />
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<link rel="stylesheet" href="../../../styles/demos.css" type="text/css" />
<script type="text/javascript" src="../../../scripts/webcomponents-lite.min.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxcore.elements.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxbuttons.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdraw.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxchart.core.js"></script>
<script type="text/javascript" src="../../../jqwidgets/jqxdata.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<script>
var sampleData =
[
{ Index: '1', SerieA: -30, SerieB: -10, SerieC: -25 },
{ Index: '2', SerieA: -25, SerieB: -25, SerieC: 10 },
{ Index: '3', SerieA: 30, SerieB: 15, SerieC: 25 },
{ Index: '4', SerieA: 35, SerieB: 25, SerieC: 45 },
{ Index: '5', SerieA: 20, SerieB: 15, SerieC: 25 }
];
JQXElements.settings['chartSettings'] =
{
title: 'Funnel chart',
description: 'This example demonstrates funnel chart with positive and negative values',
enableAnimations: false,
showLegend: true,
padding: { left: 15, top: 15, right: 15, bottom: 15 },
titlePadding: { left: 90, top: 0, right: 0, bottom: 10 },
source: sampleData,
xAxis:
{
dataField: 'Index',
tickMarks: {
visible: true,
interval: 1
},
gridLines: {
visible: true,
interval: 1
}
},
valueAxis:
{
labels: { horizontalAlignment: 'right' }
},
colorScheme: 'scheme02',
seriesGroups:
[
{
type: 'column',
columnsGapPercent: 20,
seriesGapPercent: 20,
columnsTopWidthPercent: 100,
columnsBottomWidthPercent: 30,
series: [
{ dataField: 'SerieA', displayText: 'Serie A', labels: { visible: true } },
{ dataField: 'SerieB', displayText: 'Serie B', labels: { visible: true } },
{ dataField: 'SerieC', displayText: 'Serie C', labels: { visible: true } }
]
}
]
}
</script>
</head>
<body>
<jqx-chart settings="chartSettings" style="width:850px; height:500px;"></jqx-chart>
<div class="example-description">
The funnel chart is used to represent the difference in values of a series where the size of the shape is determined by the value as a percentage to the total of all values. The type of the seriesGroups is column and the columnsTopWidthPercent and columnsBottomWidthPercent settings are used to define the shape of the funnel.
</div>
</body>
</html>