jQWidgets Forums
jQuery UI Widgets › Forums › Chart › Pie chart legends
Tagged: jqxChart
This topic contains 5 replies, has 3 voices, and was last updated by alexn 8 years, 2 months ago.
-
AuthorPie chart legends Posts
-
Hello,
I have updated jqwidget’s version to 3.1.0
In pie chart, i have applied toolTipFormatFunction, it affects legends.
i.e the legends are also gets formatted like tooltip.Thanks & Regards,
SnehalHi,
Please help me with this, it is affecting all pie charts legends.
Thanks & Regards,
Snehal.Please check this sample code.
<!DOCTYPE html>
<html lang=”en”>
<head>
<title id=’Description’>jqxChart Bar Series Example</title>
<link rel=”stylesheet” href=”../../jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”../../scripts/jquery-1.10.2.min.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxchart.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxdata.js”></script>
<script type=”text/javascript”>
$(document).ready(function () {
// prepare chart data
var sampleData = [
{ Country: ‘China’, Population: 1347350000, Percent: 19.18},
{ Country: ‘India’, Population: 1210193422, Percent: 17.22},
{ Country: ‘USA’, Population: 313912000, Percent: 4.47},
{ Country: ‘Indonesia’, Population: 237641326, Percent: 3.38},
{ Country: ‘Brazil’, Population: 192376496, Percent: 2.74}];
// prepare jqxChart settings
var settings = {
title: “Top 5 most populated countries”,
description: “Statistics for 2011″,
showLegend: true,
enableAnimations: true,
padding: { left: 20, top: 5, right: 20, bottom: 5 },
titlePadding: { left: 90, top: 0, right: 0, bottom: 10 },
source: sampleData,
categoryAxis:
{
dataField: ‘Country’,
showGridLines: true,
flip: false
},
colorScheme: ‘scheme01’,
seriesGroups:
[
{
type: ‘pie’,
valueAxis:
{
displayValueAxis: true,
description: ”,
formatFunction: function (value) {
return parseInt(value / 1000000);
}
},
series: [
{ dataField: ‘Population’,
displayText: ‘Country’,
toolTipFormatFunction: function(value){
return “Country : “+value;
}
}
]
}
]
};
// setup the chart
$(‘#jqxChart’).jqxChart(settings);
});
</script>
</head>
<body class=’default’>
<div id=’jqxChart’ style=”width:680px; height:400px; position: relative; left: 0px; top: 0px;”>
</div>
</body>
</html>Hi Snehal,
We are aware about that, but we cannot offer a solution at present. I will add a high-priority work item which will be resolved in the next version.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/OK Peter, Thank you.
Regards,
SnehalI’m using version 4, and this issue doesn’t appear to be resolved. Is there at least a workaround yet?
-
AuthorPosts
You must be logged in to reply to this topic.