/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/pc/pallet_dashboard.aspx
98 строк
5 KB
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="pallet_dashboard.aspx.vb" Inherits="r" %> <%@ Register Src="~/UserControls/editableGridNew.ascx" TagPrefix="uc1" TagName="editableGridNew" %> <%@ Register Src="~/UserControls/alerter.ascx" TagPrefix="uc1" TagName="alerter" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Pallet delivery status</title> <link href="../Styles/page.css" rel="stylesheet" /> <style> a { color: white; text-decoration:none; } .cellid a { color: white; text-decoration:none; } .headerID a { color: white; text-decoration:underline; } </style> </head> <body style="background-color: black"> <form id="form1" runat="server"> <%--<div class="center"> <asp:ImageButton ID="ibRefresh" runat="server" ImageUrl="~/Images/Refresh.png" class="vcenter" /> <asp:ImageButton ID="ibExcelDownload" runat="server" Height="27" Width="27" ImageUrl="~/Images/Microsoft%20Office%202003%20Excel.png" CssClass="vcenter" /> </div><br/>--%> <table border="1"> <tr> <td> <div class="center "> <asp:Chart ID="Hourly" runat="server" Width="1900px" Height="900px" BackColor="Black"> <Titles> <asp:Title ShadowColor="32, 0, 0, 0" Font="Trebuchet MS, 14.25pt, style=Bold" Text="Pallet delivery status" ForeColor="White" ></asp:Title> </Titles> <Series runat="server"> <asp:Series Name="Plan" Font="Microsoft Sans Serif, 14pt" ChartType="StackedColumn" Color="#3366FF" runat="server" LegendText="Plan" XValueType="Time" BorderColor="Black" ToolTip="#VAL" IsValueShownAsLabel="True"></asp:Series> <asp:Series Name="Result" Font="Microsoft Sans Serif, 14pt" ChartType="StackedColumn" Color="#FF9933" runat="server" LegendText="Result" XValueType="Time" BorderColor="Black" ToolTip="#VAL" IsValueShownAsLabel="True"></asp:Series> </Series> <ChartAreas> <asp:ChartArea Name="ChartArea1" Area3DStyle-Enable3D="False" Area3DStyle-Inclination="10" Area3DStyle-Rotation="5" AlignmentOrientation="Horizontal" Area3DStyle-IsClustered="True" BackColor="#66CCFF"> <AxisX IsLabelAutoFit="false" IntervalType="Hours" Interval="1" LineColor="White" IntervalOffsetType="Auto" IntervalOffset="Auto" Crossing="Auto" IntervalAutoMode="FixedCount" IsMarginVisible="True"> <MajorGrid LineColor="White" IntervalType="Hours" Interval="1" IntervalOffsetType="Auto" Enabled="False" /> <LabelStyle ForeColor="White" Font="Microsoft Sans Serif, 14pt" /> </AxisX> <AxisY Title="Quantity" TextOrientation="Rotated270" LineColor="White" TitleForeColor="White" IsLabelAutoFit="false" Enabled="False"> <LabelStyle ForeColor="White" Font="Microsoft Sans Serif, 14pt" /> <MajorGrid LineColor="White" Enabled="False" /> </AxisY> <AxisY2 Title="Quantity" TextOrientation="Rotated270" LineColor="White" TitleForeColor="White" IsLabelAutoFit="false" Enabled="False"> <LabelStyle ForeColor="White" Font="Microsoft Sans Serif, 14pt" /> <MajorGrid LineColor="White" Enabled="False" /> </AxisY2> </asp:ChartArea> </ChartAreas> <Legends> <asp:Legend Name="Legend1" Docking="Bottom" Alignment="Center" Font="Trebuchet MS, 20pt" LegendItemOrder="ReversedSeriesOrder" BackColor="Black" ForeColor="White" IsTextAutoFit="False"> </asp:Legend> </Legends> </asp:Chart> </div> </td> </tr> </table> <asp:SqlDataSource ID="Sql_hourly" runat="server" ConnectionString="<%$ ConnectionStrings:SERKIntranetConnectionString %>"></asp:SqlDataSource> <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager> <asp:Timer ID="Timer1" runat="server" Enabled="True" Interval="60000"></asp:Timer> </form> </body> </html>