Chart rendering issue

  1. #1

    Chart rendering issue

    Hi,

    I'm implementing a chart in my application.Chart renders flawless in Chrome but the same chart does not render properly in IE9

    Is this a known issue? Is there a solution?

    Please see the attached screenshots for the reference.

    Thanks
    Ashwin Rai

    Chrome
    Click image for larger version. 

Name:	Chart Displayed in Chrome.png 
Views:	23 
Size:	67.8 KB 
ID:	6288

    IE9
    Click image for larger version. 

Name:	Chart displayed in IE9.png 
Views:	19 
Size:	8.2 KB 
ID:	6289
  2. #2
    Hi @raiwinashu,

    Welcome to the Ext.NET forums and thank you for the report!

    Please provide a test case to reproduce the issue.
  3. #3
    Quote Originally Posted by Daniil View Post
    Hi @raiwinashu,

    Welcome to the Ext.NET forums and thank you for the report!

    Please provide a test case to reproduce the issue.

    Thanks for your reply

    Following is the code i need to work in IE
    <ext:Panel ID="Panel1"
            runat="server"
            BodyStyle="background-color:#DCE8E8"
            Title="Incidents This Year"
            Width="400"
            Height="500"
            Layout="FitLayout"
            TitleAlign="Center">
    
    
            <Items>
                <ext:Chart
                    ID="Chart1"
                    runat="server"
                    StyleSpec="background-color:#DCE8E8"
                    Animate="true">
    
                    <Store>
                        <ext:Store runat="server" ID="IncByMnthStore">
                            <Model>
                                <ext:Model ID="Model1" runat="server">
                                    <Fields>
                                        <ext:ModelField Name="Month" />
                                        <ext:ModelField Name="Incidents" />
                                    </Fields>
                                </ext:Model>
                            </Model>
                        </ext:Store>
                    </Store>
    
                    <Axes>
                        <ext:NumericAxis
                            Fields="Incidents"
                            Position="Bottom"
                            Grid="true"
                            Title="Number of Incidents"
                            Minimum="0">
                            <Label>
                                <Renderer Handler="return Ext.util.Format.number(value, '0,0');" />
                            </Label>
                        </ext:NumericAxis>
    
                        <ext:CategoryAxis
                            Fields="Month"
                            Position="Left"
                            Title="Month" />
                    </Axes>
    
                    <Series>
                        <ext:BarSeries
                            Axis="Bottom"
                            XField="Month"
                            YField="Incidents">
                            <Label
                                Display="InsideEnd"
                                Field="Incidents"
                                Orientation="Horizontal"
                                Color="#333"
                                TextAnchor="middle"
                                Contrast="true">
                                <Renderer Handler="return Ext.util.Format.number(value, '0,0');" />
                            </Label>
                            <Renderer Fn="barRenderer" />
                        </ext:BarSeries>
                    </Series>
                </ext:Chart>
            </Items>
        </ext:Panel>
  4. #4
    Thank you, but, unfortunately, I cannot run the code snippet. Please provide a full test case.

Similar Threads

  1. Ext.Net 2.1.1 Controls rendering issue in IE7
    By rahesh in forum 2.x Help
    Replies: 3
    Last Post: Feb 21, 2013, 4:54 AM
  2. [CLOSED] Bug rendering asp.net chart in web site scenario
    By odyssey in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Feb 19, 2013, 9:42 AM
  3. [CLOSED] Rendering Issue in MVC
    By webppl in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Mar 21, 2012, 10:13 PM
  4. [CLOSED] [1.0] Rendering Chart/Flash behind Model Window
    By ljankowski in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Nov 08, 2010, 7:24 PM
  5. Rendering issue with HeaderRows
    By asztern in forum 1.x Help
    Replies: 0
    Last Post: Jan 30, 2010, 10:33 AM

Posting Permissions