I am just extending the data in the formatdata function as follows.
formatData: function (data) {
$.extend(data, {
selectedColumn: selectedColumn,
selectedRow: selectedRow,
selectedMeasures: selectedMeasures,
serverName: serverName,
databaseName: databaseName,
cubeName: cubeName,
queryTemplate: QueryTemplate,
chartMode: ChartMode,
chartType: chartType,
filterContent: filterContent,
FilterSelectedValue: FilterSelectedValue,
rollingTimePeriod: rollingTimePeriod,
calculatedmeasureVal: calculatedmeasureVal
});
return data;
}
When I do that I am getting error. But when I pass less data in the variable FilterSelectedValue, it is working fine. Please advice me any fix. Thanks in advance.
Kindest Regards
Sibeesh Venu