You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
151 lines
5.1 KiB
151 lines
5.1 KiB
4 years ago
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
|
||
|
|
||
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
||
|
用户信息列表
|
||
|
</asp:Content>
|
||
|
|
||
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
||
|
<table id="EditTable" cellpadding=0 cellspacing=0>
|
||
|
<tr>
|
||
|
<td align="center">
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Line1()" plain="true">标准折线图(附带点击事件)</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Line2()" plain="true">堆积折线图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Line3()" plain="true">标准面积图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Line4()" plain="true">堆积面积图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Bar1()" plain="true">标准柱状图(附带点击事件+下钻样例)</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Bar3()" plain="true">标准条形图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Bar2()" plain="true">堆积柱状图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Bar4()" plain="true">堆积条形图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Pie1()" plain="true">标准饼图(附带点击事件+下钻样例)</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Pie2()" plain="true">标准环形图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Map1()" plain="true">标准地图</a>
|
||
|
<%--<a class="easyui-linkbutton" href="#" onclick="MapExt5()" plain="true">扩展地图</a>--%>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Radar1()" plain="true">标准雷达图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Gauge1()" plain="true">标准仪表盘</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Scatter1()" plain="true">标准散点图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Scatter2()" plain="true">标准气泡图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="Funnel1()" plain="true">标准漏斗图</a>
|
||
|
<a class="easyui-linkbutton" href="#" onclick="duotu()" plain="true">多图叠加</a>
|
||
|
</td>
|
||
|
|
||
|
</tr>
|
||
|
</table>
|
||
|
<script language="javascript" type="text/javascript">
|
||
|
|
||
|
//多图叠加
|
||
|
function duotu() {
|
||
|
openAppWindow1('多图叠加', 'Group1', '1000', '750');
|
||
|
}
|
||
|
|
||
|
|
||
|
//标准折线图
|
||
|
function Line1() {
|
||
|
|
||
|
openAppWindow1('标准折线图', 'Line1', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//堆积折线图
|
||
|
function Line2() {
|
||
|
|
||
|
openAppWindow1('堆积折线图', 'Line2', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//标准面积图
|
||
|
function Line3() {
|
||
|
|
||
|
openAppWindow1('标准面积图', 'Line3', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//堆积面积图
|
||
|
function Line4() {
|
||
|
|
||
|
openAppWindow1('堆积面积图', 'Line4', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//标准柱状图
|
||
|
function Bar1() {
|
||
|
|
||
|
openAppWindow1('标准柱状图', 'Bar1', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//标准条形图
|
||
|
function Bar3() {
|
||
|
|
||
|
openAppWindow1('标准条形图', 'Bar3', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//堆积柱状图
|
||
|
function Bar2() {
|
||
|
|
||
|
openAppWindow1('堆积柱状图', 'Bar2', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//堆积条形图
|
||
|
function Bar4() {
|
||
|
|
||
|
openAppWindow1('堆积条形图', 'Bar4', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//标准饼图
|
||
|
function Pie1() {
|
||
|
|
||
|
openAppWindow1('标准饼图', 'Pie1', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//标准环形图
|
||
|
function Pie2() {
|
||
|
|
||
|
openAppWindow1('标准环形图', 'Pie2', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//扩展地图
|
||
|
function MapExt5() {
|
||
|
|
||
|
openAppWindow1('扩展地图', 'MapExt5', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//标准地图
|
||
|
function Map1() {
|
||
|
|
||
|
openAppWindow1('标准地图', 'Map1', '1000', '750');
|
||
|
}
|
||
|
|
||
|
//标准雷达图
|
||
|
function Radar1() {
|
||
|
|
||
|
openAppWindow1('标准雷达图', 'Radar1', '1000', '750');
|
||
|
}
|
||
|
//标准仪表盘
|
||
|
function Gauge1() {
|
||
|
|
||
|
openAppWindow1('标准仪表盘', 'Gauge1', '1000', '750');
|
||
|
}
|
||
|
//标准散点图
|
||
|
function Scatter1() {
|
||
|
|
||
|
openAppWindow1('标准气泡图', 'Scatter1', '1000', '750');
|
||
|
}
|
||
|
//标准气泡图
|
||
|
function Scatter2() {
|
||
|
|
||
|
openAppWindow1('标准气泡图', 'Scatter2', '1000', '750');
|
||
|
}
|
||
|
//标准漏斗图
|
||
|
function Funnel1() {
|
||
|
|
||
|
openAppWindow1('标准漏斗图', 'Funnel1', '1000', '750');
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<div id="ld1" style="height:800px;width:100%;overflow:auto;text-align:center;">
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</asp:Content>
|
||
|
|
||
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
||
|
|
||
|
</asp:Content>
|