Dear Support Team,
I was working in Syncfusion ej1 ejChart and found that touch is not working on button click across the page when ejChart is initialized. The version is 14.2.0.28.
I am sharing my code snippet:
$("#chart").ejChart(
{
pointRegionClick: 'onclick_chart',
//Initializing Common Properties for all the series
commonSeriesOptions:
{
labelPosition: 'outside',
type: v_chart_type,
//enableAnimation: true,
tooltip :{visible:true , format: "#point.x#<br/>Total: #point.y#"},
marker:
{
dataLabel:
{
shape: 'none',
visible: true,
textPosition: 'top',
border: { width: 1},
connectorLine: { height: 20, stroke:"black" }
}
}
},
//Initializing Series
series:
[
{
dataSource:data_source,
xName: "x_value",
yName: "y_value",
marker :{dataLabel :{textMappingName : "marker_label"}},
// explodeIndex: 0,
border: { width: 2, color: 'white' },
// type: 'pie',
// type: $("#div_chart").attr("data-chart-type"),
labelPosition: 'inside',
startAngle: 45
}
],
depth: 40,
tilt: -45,
rotation: 0,
perspectiveAngle: 30,
// load:"loadTheme",
//size: { height: "400", width:"100%" },
background: "#E7E7E7",
isResponsive: true,
enable3D: true,
legend: { visible: true, position: 'top', alignment:"near" }
});
We have tried with syncfusion updated version with same code and it works fine. But we are planning upgrade next year. So is there any way to solve this problem in this version.
Reagrds,
Talha