BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
XlsIO Chart | ejChart json |
_worksheet.Charts[0].ChartTitle="Sales Comparison" | title:{text: 'Sales Comparsion'},... |
_worksheet.Charts[0].Series[0].Name="Apple" | series: [{points: [...],... name: 'Apple',fill:"#1ABC9C"},... |
Hi Mike,
Thanks for using syncfusion product. We have
analyzed your requirements,
Query #1: Mapping XlsIO chart attributes to ejChart
json?
Response : We have prepared a document based on your
requirement. Please find the attached document.
We have implemented 3D chart feature and it will be available
in upcoming release Volume 3 which will be expected to rolled out on mid of
October 2014. So, we cannot add 3D related properties in attached document.
Please find following UG Document in following location,
http://help.syncfusion.com/web
Please select chart it will be more helpful to create chart
and chart functionalities.
If you want to know the API Reference please refer the following location:
http://help.syncfusion.com/cr/js
and please select chart.
Query #2: I'm getting the error when using localdata with datamanager?
Response: We are
analyzing on this reported and we will let you know the status of this in one
business day. {14th Oct 2014}.
Regards,
Akbar Basha KM.
Hi Mike,
Thanks for your patience. We have analyzed your requirement
with your code and we like to inform you that you need set the query within
series as follows,
Code Snippet[JS]:
series:
[{
name:'series1',
dataSource:
dataManager,
xName: 'FoodName',
yName: 'Calorie',
query:
query,
type:'column'},
{
name:'series2',
dataSource:
dataManager,
xName: 'FoodName',
yName: 'Protein',
query:
query,
type: 'column'}],
We have modified your attached sample. Please find the sample under the following location,
Sample Location:
Please let us know if you have any concern.
Thanks,
Akbar Basha KM.
Hi Mike,
series:
[
{
name: 'series1',
dataSource: e.result,
xName: 'xValue',
yName:
'yValue1',
query: query,
type: 'column'
},
{
name:
'series2',
dataSource: e.result,
xName: 'xValue',
yName: 'yValue2',
query: query,
type: 'column'
},
{
name: 'series3',
dataSource: e.result,
xName: 'xValue',
yName: 'yValue3',
query: query,
type: 'column'
}
],
We have prepared a sample based on your requirement. Please
find the attached sample,
Please let us know if you have any concern.
Regards,
Akbar Basha KM.