[CLOSED] CartesianChart not showing

  1. #1

    [CLOSED] CartesianChart not showing

    Hello,
    I am trying to build a page with 3 Items: CartesianChart, TreePanel and GridPanel(path: <ext:Viewport - <Items - <ext:Panel Layout="AnchorLayout" - <Items).
    CartesianChart attributes: ... AnchorHorizontal="100%" AnchorVertical="30%" ...
    TreePanel attributes: ... AnchorHorizontal="30%" AnchorVertical="70%" ...
    GridPanel attributes: ... AnchorHorizontal="70%" AnchorVertical="70%" ...

    <ext:CartesianChart
                                ID="CompletedChart"
                                runat="server"
                                FlipXY="True"                            
                                Title="Progress"
                                AnchorHorizontal="100%"
                                AnchorVertical="30%"                        
                                >
                                <Store>
                                    <ext:Store runat="server" Data="<%# Data %>" AutoDataBind="true">
                                        <Model>
                                            <ext:Model runat="server">
                                                <Fields>
                                                    <ext:ModelField Name="Data1" />
                                                    <ext:ModelField Name="Data2" />
                                                    <ext:ModelField Name="Data3" />
                                                    <ext:ModelField Name="Data4" />
                                                    <ext:ModelField Name="Data5">
                                                        <Convert Fn="convert" />
                                                    </ext:ModelField>
                                                </Fields>
                                            </ext:Model>
                                        </Model>
                                    </ext:Store>
                                </Store>
                                <LegendConfig runat="server" Dock="Right" />
                                <Items>
                                    <ext:TextSprite 
                                        Text="Progress"
                                        FontSize="22" />
                                </Items>
                                <Axes>
                                    <ext:NumericAxis
                                        Fields="Data1"
                                        Position="Bottom"
                                        Grid="true"
                                        MajorTickSteps="10"
                                        Minimum="0"
                                        Maximum="100">
                                        <Renderer Handler="return label + '%';" />
                                    </ext:NumericAxis>
                                    <ext:CategoryAxis Fields="Data5" Position="Left" Grid="true" />
                                </Axes>
                                <Series>
                                    <ext:BarSeries
                                        XField="Data5"
                                        YField="Data1,Data2,Data3,Data4,Data5"
                                        Titles="Final,Under Revision,Incomplete,Expected,Missing"
                                        Stacked="true">
                                        <StyleSpec>
                                            <ext:Sprite Opacity="0.8" />
                                        </StyleSpec>
                                        <HighlightConfig>
                                            <ext:Sprite FillStyle="yellow" />
                                        </HighlightConfig>
                                        <Tooltip runat="server" TrackMouse="true" StyleSpec="background: #fff;">
                                            <Renderer Handler="var browser = context.series.getTitle()[Ext.Array.indexOf(context.series.getYField(), context.field)]; toolTip.setHtml(browser + ' for ' + record.get('Data5') + ': ' + record.get(context.field) + '%');" />
                                        </Tooltip>
                                    </ext:BarSeries>
                                </Series>
                            </ext:CartesianChart>
    The problem is that CartesianChart is not showing except its title and the TreePanel is above the GridPanel instead of being next to it.
    Click image for larger version. 

Name:	forumQ.PNG 
Views:	71 
Size:	12.3 KB 
ID:	24807

    Thank you,
    Aggelos
    Last edited by fabricio.murta; Jan 27, 2017 at 5:54 AM.
  2. #2
    Hello Aggelos!

    This looks much more like a layout issue than the cartesian chart itself. Can you try the same with just empty Panels? I think you might want to either combine VBox and HBox layouts, use the Border layout or maybe some other combination.

    You can specify other layouts with percentage values if you use the WidthSpec= setting instead of Width=, for example.

    Hope this helps!
    Fabrício Murta
    Developer & Support Expert
  3. #3

    Layout issue HBox inside Vbox

    Hello Fabricio,
    I tried to combine Hbox and Vbox but I got an empty screen.
    Here is the code:

    <body>
        <form id="form1" runat="server">
            <ext:ResourceManager ID="ResourceManager1" runat="server" />
        <div>
            <ext:Viewport 
                runat="server"
                StyleSpec="background-color: transparent;"
                Layout="BorderLayout"
                >
                <Items>
                    <ext:Panel runat="server" Layout="VBoxLayout">
                        <LayoutConfig>
                            <ext:VBoxLayoutConfig Align="Stretch" />
                        </LayoutConfig>
                        <Items>                       
                            <ext:CartesianChart
                                ID="CompletedChart"
                                runat="server"
                                FlipXY="True"                            
                                Title="Progress"                        
                                >
                                <Store>
                                    <ext:Store runat="server" Data="<%# Data %>" AutoDataBind="true">
                                        <Model>
                                            <ext:Model runat="server">
                                                <Fields>
                                                    <ext:ModelField Name="Data1" />
                                                    <ext:ModelField Name="Data2" />
                                                    <ext:ModelField Name="Data3" />
                                                    <ext:ModelField Name="Data4" />
                                                    <ext:ModelField Name="Data5">
                                                        <Convert Fn="convert" />
                                                    </ext:ModelField>
                                                </Fields>
                                            </ext:Model>
                                        </Model>
                                    </ext:Store>
                                </Store>
                                <LegendConfig runat="server" Dock="Right" />
                                <Items>
                                    <ext:TextSprite 
                                        Text="Progress"
                                        FontSize="22" />
                                </Items>
                                <Axes>
                                    <ext:NumericAxis                                    
                                        Position="Bottom"
                                        Grid="true"
                                        MajorTickSteps="10"
                                        Minimum="0"
                                        Maximum="100">
                                        <Renderer Handler="return label + '%';" />
                                    </ext:NumericAxis>                                
                                </Axes>
                                <Series>
                                    <ext:BarSeries
                                        XField="Data1"
                                        YField="Data1,Data2,Data3,Data4,Data5"
                                        Titles="Final,Under Revision,Incomplete,Expected,Missing"
                                        Stacked="true">
                                        <StyleSpec>
                                            <ext:Sprite Opacity="0.8" />
                                        </StyleSpec>
                                        <HighlightConfig>
                                            <ext:Sprite FillStyle="yellow" />
                                        </HighlightConfig>
                                        <Tooltip runat="server" TrackMouse="true" StyleSpec="background: #fff;">
                                            <Renderer Handler="var browser = context.series.getTitle()[Ext.Array.indexOf(context.series.getYField(), context.field)]; toolTip.setHtml(browser + ' for ' + record.get('Data5') + ': ' + record.get(context.field) + '%');" />
                                        </Tooltip>
                                    </ext:BarSeries>
                                </Series>
                            </ext:CartesianChart>
                            <ext:Panel
                                runat="server"
                                Layout="HBoxLayout">
                                <Items>
                                    <ext:TreePanel 
                                        runat="server" 
                                        Title="Accordion" 
                                        RootVisible="false"
                                            >
                                        <Root>
                                            <ext:Node Text="Root">
                                                <Children>
                                                    <ext:Node Text="Trial" Expanded="true">
                                                        <Children>
    
                                                        </Children>
                                                    </ext:Node>
                                                    <ext:Node Text="Zones" Expanded="false">
    
                                                    </ext:Node>
                                                    <ext:Node Text="Sections" Expanded="false">
    
                                                    </ext:Node>
                                                </Children>
                                            </ext:Node>
                                        </Root>
                                    </ext:TreePanel>
                                    <ext:GridPanel
                                        ID="FilesGrid"
                                        runat="server"
                                        Title="Files"
                                        >
                                        <Store>
                                            <ext:Store ID="FilesStore" runat="server" OnReadData="FilesStore_ReadData">
                                                <Model>
                                                    <ext:Model runat="server">
                                                        <Fields>
                                                            <ext:ModelField Name="Type" />
                                                            <ext:ModelField Name="Title" />
                                                            <ext:ModelField Name="ID" />
                                                            <ext:ModelField Name="Version" Type="Float" />
                                                            <ext:ModelField Name="Clinical Trial" />
                                                            <ext:ModelField Name="Site" />
                                                            <ext:ModelField Name="Country" />
                                                            <ext:ModelField Name="Owner" />
                                                            <ext:ModelField Name="Date Modified" Type="Date" DateFormat="dd/MM/yyyy" />
                                                            <ext:ModelField Name="Expiration Date" Type="Date" DateFormat="dd/MM/yyyy" />
                                                            <ext:ModelField Name="Sub Documents" />
                                                        </Fields>
                                                    </ext:Model>
                                                </Model>
                                            </ext:Store>
                                        </Store>
                                        <ColumnModel runat="server">
                                            <Columns>
                                                <ext:Column
                                                    runat="server"
                                                    Text="Type"
                                                    DataIndex="type"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="TypeComboBox"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="type"
                                                            ValueField="type">
                                                            <Store>
                                                                <ext:Store runat="server">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="type" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                                <ext:Column
                                                    runat="server"
                                                    Text="Title"
                                                    DataIndex="Title"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="ComboBox1"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="Title"
                                                            ValueField="Title">
                                                            <Store>
                                                                <ext:Store runat="server" OnReadData="FilesStore_ReadData">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="Title" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                                <ext:Column
                                                    runat="server"
                                                    Text="ID"
                                                    DataIndex="ID"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="ComboBox2"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="ID"
                                                            ValueField="ID">
                                                            <Store>
                                                                <ext:Store runat="server">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="ID" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                                <ext:Column
                                                    runat="server"
                                                    Text="Version"
                                                    DataIndex="version"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="ComboBox3"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="version"
                                                            ValueField="version">
                                                            <Store>
                                                                <ext:Store runat="server">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="version" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                                <ext:Column
                                                    runat="server"
                                                    Text="Clinical Trial"
                                                    DataIndex="ct"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="ComboBox4"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="ct"
                                                            ValueField="ct">
                                                            <Store>
                                                                <ext:Store runat="server">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="ct" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                                <ext:Column
                                                    runat="server"
                                                    Text="Site"
                                                    DataIndex="site"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="ComboBox5"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="site"
                                                            ValueField="site">
                                                            <Store>
                                                                <ext:Store runat="server">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="site" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                                <ext:Column
                                                    runat="server"
                                                    Text="Country"
                                                    DataIndex="country"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="ComboBox6"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="country"
                                                            ValueField="country">
                                                            <Store>
                                                                <ext:Store runat="server">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="country" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                                <ext:Column
                                                    runat="server"
                                                    Text="Owner"
                                                    DataIndex="owner"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="ComboBox7"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="owner"
                                                            ValueField="owner">
                                                            <Store>
                                                                <ext:Store runat="server">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="owner" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                                <ext:Column
                                                    runat="server"
                                                    Text="Date Modified"
                                                    DataIndex="dm"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="ComboBox8"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="dm"
                                                            ValueField="dm">
                                                            <Store>
                                                                <ext:Store runat="server">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="dm" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                                <ext:Column
                                                    runat="server"
                                                    Text="Expiration Date"
                                                    DataIndex="ed"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="ComboBox9"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="ed"
                                                            ValueField="ed">
                                                            <Store>
                                                                <ext:Store runat="server">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="ed" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                                <ext:Column
                                                    runat="server"
                                                    Text="Sub Documents"
                                                    DataIndex="sdocs"
                                                    Flex="1">
                                                    <Items>
                                                        <ext:ComboBox
                                                            ID="ComboBox10"
                                                            runat="server"
                                                            TrigerAction="All"
                                                            QueryMode="Local"
                                                            DisplayField="sdocs"
                                                            ValueField="sdocs">
                                                            <Store>
                                                                <ext:Store runat="server">
                                                                    <Model>
                                                                        <ext:Model runat="server">
                                                                            <Fields>
                                                                                <ext:ModelField Name="sdocs" />
                                                                            </Fields>
                                                                        </ext:Model>
                                                                    </Model>
                                                                </ext:Store>
                                                            </Store>
                                                            <Listeners>
                                                                <Change Handler="applyFilter(this);" Buffer="250" />
                                                            </Listeners>
                                                            <Plugins>
                                                                <ext:ClearButton runat="server" />
                                                            </Plugins>
                                                        </ext:ComboBox>
                                                    </Items>
                                                </ext:Column>
                                            </Columns>
                                        </ColumnModel>
                                    </ext:GridPanel>
                                    <ext:FormPanel
                                        ID="BasicForm"
                                        runat="server"
                                        Frame="true"
                                        Title="File Upload Form"
                                        PaddingSummary="10px 10px 0 10px"
                                        LabelWidth="50">
                                        <Defaults>
                                            <ext:Parameter Name="anchor" Value="95%" Mode="Value" />
                                            <ext:Parameter Name="allowBlank" Value="false" Mode="Raw" />
                                            <ext:Parameter Name="msgTarget" Value="side" Mode="Value" />
                                        </Defaults>
                                        <Items>
                                            <ext:TextField ID="FileName" runat="server" FieldLabel="Name" />
                                            <ext:FileUploadField
                                                ID="FileUploadField1"
                                                runat="server"
                                                EmptyText="Select a file"
                                                FieldLabel="File"
                                                ButtonText=""
                                                Icon="PictureAdd"
                                                />
                                        </Items>
                                        <Listeners>
                                            <ValidityChange Handler="#{SaveButton}.setDisabled(!valid);" />
                                        </Listeners>
                                        <Buttons>
                                            <ext:Button ID="SaveButton" runat="server" Text="Save" Disabled="true">
                                                <DirectEvents>
                                                    <Click
                                                        OnEvent="UploadClick"
                                                        Before="if (!#{BasicForm}.getForm().isValid()) { return false; }
                                                            Ext.Msg.wait('Uploading your file...', 'Uploading');"
    
                                                        Failure="Ext.Msg.show({
                                                            title   : 'Error',
                                                            msg     : 'Error during uploading',
                                                            minWidth: 200,
                                                            modal   : true,
                                                            icon    : Ext.Msg.ERROR,
                                                            buttons : Ext.Msg.OK
                                                        });">
                                                    </Click>
                                                </DirectEvents>
                                            </ext:Button>
                                            <ext:Button runat="server" Text="Reset">
                                                <Listeners>
                                                    <Click Handler="#{BasicForm}.getForm().reset();" />
                                                </Listeners>
                                            </ext:Button>
                                        </Buttons>
                                    </ext:FormPanel>
                                </Items>
                            </ext:Panel>
                        </Items>                        
                    </ext:Panel> 
                </Items>
            </ext:Viewport>
        </div>
        </form>
    Last edited by atroul; Jan 09, 2017 at 10:56 AM. Reason: add title
  4. #4
    Hello Aggelos!

    It would really help us help you if you provided a simpler sample with just the bare minimum necessary to reproduce the issue. I don't think we need the renderers, tooltips, model field's converters and a lot of the fields you depicted in your example.

    And it will take a lot of effort to make dummy data out to fill the example you provided, so we can't just run the code you provided in the previous posts.

    Please provide a simplified code sample demonstrating how to reproduce the issue.

    The code sample you provide should include only the minimum amount of code required to reproduce the issue. Code unrelated to the issue is to be removed. Anyone should be able to copy + paste your sample into a local Visual Studio test project and run without having to make modifications.

    Tips for creating simplified code samples

    If Exceptions or syntax errors are thrown when testing your code sample, we'll let you know so you can revise your original sample. Then we'll review again with the updated sample.

    When posting your code samples in the forums, please paste that sample within [CODE] tags. The [CODE] tags will add formatting and syntax highlighting to your sample.

    The following two forum posts provide many excellent tips for posting in the forums:

    1. More Information Required
    2. Forum Guidelines
    Fabrício Murta
    Developer & Support Expert
  5. #5
    Well, but by just reading your code I could see you are not using the BorderLayout appropriately.

    When you use borderLayout, you have to specify the region you want each panel to go. There are Center, North, South, East, West. If you have panels-inside-panels, only the panels immediately into the container (containers can be a viewport, a panel, a container itself, a window, to name some).

    For example, in your case, if you have a viewport with border layout, then a panel with two panels inside, the code should look like something like this:

    <ext:Viewport runat="server" Layout="BorderLayout">
        <Items>
            <ext:Panel runat="server" Layout="VBoxLayout" Region="North">
                <Items>
                    <ext:Panel runat="server" />
                    <ext:Panel runat="server" />
                </Items>
            </ext:Panel>
            <ext:Panel runat="server" Layout="VBoxLayout" Region="South">
                <Items>
                    <ext:Panel runat="server" />
                    <ext:Panel runat="server" />
                </Items>
            </ext:Panel>
        </Items>
    </ext:Viewport>
    This is a very bare minimum code just to show you: the inner panels will be placed one above the other (VBox layout), the outer panels will be placed in the north and south "spots" of the BorderLayout bound to the viewport (which is just a container that fits the whole browser screen area).

    Here's more into the border layout: ExtJS 6.0.2 documentation on Border layout
    And here's an Ext.NET example exploring border layout, giving regions' allocation weights:
    - Layouts > Border > Region Weights

    I hope this helps! If not, let's try the simplified sample. You can base your simplified sample from one of the examples on the examples explorer, I think it will make our lives easier! Just open an example, then click 'source', and copypaste the code to your sample page. You can use the same ASPX page to contain both markup and code behind (inside a <script runat="server" /> block).
    Fabrício Murta
    Developer & Support Expert
  6. #6
    Hello @atroul!

    Been some days since we replied this thread and still no feedback from you. Do you still need help with this issue?
    Last edited by fabricio.murta; Jan 21, 2017 at 10:30 PM.
  7. #7
    Hello fabricio!
    No thank you! please mark it as closed
  8. #8
    Thanks for your feedback! Marking as closed!
    Fabrício Murta
    Developer & Support Expert

Similar Threads

  1. Replies: 3
    Last Post: Oct 18, 2016, 6:00 PM
  2. [CLOSED] CartesianChart Legend Borders
    By MrProtonYo in forum 3.x Legacy Premium Help
    Replies: 2
    Last Post: Jul 09, 2015, 8:08 PM
  3. [CLOSED] CartesianChart Legend Titles
    By MrProtonYo in forum 3.x Legacy Premium Help
    Replies: 3
    Last Post: Jul 01, 2015, 7:08 PM
  4. [CLOSED] Questions about CartesianChart objects
    By MrProtonYo in forum 3.x Legacy Premium Help
    Replies: 6
    Last Post: Jul 01, 2015, 7:06 PM
  5. [CLOSED] CartesianChart Background Color
    By MrProtonYo in forum 3.x Legacy Premium Help
    Replies: 3
    Last Post: Jul 01, 2015, 7:01 PM

Tags for this Thread

Posting Permissions