Skip to content

polymer element not compatible with IE #1143

Closed
@ghost

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:

google chrome;
chrome

firefox:

firefox

IE:

ie

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions