Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

polymer element not compatible with IE #1142

Closed
ghost opened this issue Jan 29, 2015 · 0 comments
Closed

polymer element not compatible with IE #1142

ghost opened this issue Jan 29, 2015 · 0 comments

Comments

@ghost
Copy link

ghost commented Jan 29, 2015

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>
<link rel="import" href="high/html/line-chart.html">

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:

google chrome;
chrome

firefox:

firefox

IE:

ie

@ghost ghost closed this as completed Jan 29, 2015
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants