Closed
![@ghost](https://github.com/ghost.png?size=80)
Description
I am creating polymer elements using DEV-EXPRESS library to create charts(running on Tomcat server). The chart polymer elements are working fine in CHROME , FIREFOX but are not compatible with IE. Below is the code that i have used to create a bar chart and i am attaching screen-shots too for all the three browsers.
below is the code:
index.jsp;
<script src="library/bower_components/webcomponentsjs/webcomponents.js"></script> <script src="library/js/jquery-1.11.1.min.js"></script> <script src="library/js/globalize.min.js"></script> <script src="library/js/dx.all.js"></script>line-chart.html :
<script> Polymer('line-chart', { ready: function () { var me = this; $(me.$.linechart).dxChart({ dataSource: [ {day: "Monday", oranges: 3}, {day: "Tuesday", oranges: 2}, {day: "Wednesday", oranges: 3}, {day: "Thursday", oranges: 4}, {day: "Friday", oranges: 6}, {day: "Saturday", oranges: 11}, {day: "Sunday", oranges: 4} ], series: { argumentField: "day", valueField: "oranges", name: "My oranges", type: "bar", color: '#ffa500' } }); } }); </script>
Screenshots:
firefox:
IE:
Metadata
Assignees
Labels
No labels