23 lines
1.3 KiB
Plaintext
23 lines
1.3 KiB
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/SiteContent.master" AutoEventWireup="true" CodeBehind="TestChart.aspx.cs" Inherits="NKC_WF.site.TestChart" %>
|
|
|
|
<%@ Register Src="~/WebUserControls/cmp_BatchStatsPlot.ascx" TagPrefix="uc1" TagName="cmp_BatchStatsPlot" %>
|
|
<%@ Register Src="~/WebUserControls/cmp_DailyStatsPlot.ascx" TagPrefix="uc1" TagName="cmp_DailyStatsPlot" %>
|
|
|
|
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
|
|
<h1>Chart Js test</h1>
|
|
<asp:UpdatePanel runat="server" ID="uplBody" UpdateMode="Conditional">
|
|
<ContentTemplate>
|
|
<asp:LinkButton runat="server" ID="lbtRefreshData" CssClass="btn btn-success" OnClick="lbtRefreshData_Click"><i class="fa fa-refresh" aria-hidden="true"></i> Reload</asp:LinkButton>
|
|
<asp:DropDownList runat="server" ID="ddlChart">
|
|
<asp:ListItem Text="Graph_01" Value="1"></asp:ListItem>
|
|
<asp:ListItem Text="Graph_02" Value="2"></asp:ListItem>
|
|
<asp:ListItem Text="Graph_03" Value="3"></asp:ListItem>
|
|
</asp:DropDownList>
|
|
<uc1:cmp_BatchStatsPlot runat="server" ID="cmp_BatchStatsPlot" />
|
|
<uc1:cmp_DailyStatsPlot runat="server" ID="cmp_DailyStatsPlot" />
|
|
</ContentTemplate>
|
|
</asp:UpdatePanel>
|
|
</asp:Content>
|