- Timestamp:
- 05/27/11 19:15:16 (14 years ago)
- Location:
- branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Chart
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Chart/BubbleChart.ascx
r6171 r6318 3 3 <%@ Register assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" namespace="System.Web.UI.DataVisualization.Charting" tagprefix="asp" %> 4 4 5 5 <div style="background-color: #eeeeee;border-style:solid;border-color:#aaa;border-width:1px;padding:10px;list-style-type:none;"> 6 6 <% using (Html.BeginForm("UpdateBubbleChart","Chart")) %> 7 7 <% { %> 8 8 9 <%: Html.Label(" x axis")%>9 <%: Html.Label("X-Axis")%> 10 10 <%: Html.DropDownList("valuesAxisXCombobox", new SelectList(((ChartModel)Model).valuesAxisX))%> 11 12 <%: Html.Label(" y axis")%>11 <br /> 12 <%: Html.Label("Y-Axis")%> 13 13 <%: Html.DropDownList("valuesAxisYCombobox", new SelectList(((ChartModel)Model).valuesAxisY))%> 14 15 <%: Html.Label(" bubble size")%>14 <br /> 15 <%: Html.Label("Bubble Size")%> 16 16 <%: Html.DropDownList("bubbleSizeCombobox", new SelectList(((ChartModel)Model).bubbleSize))%> 17 17 18 <input type="submit" value="update chart" /> 18 <input type="submit" class="hl-icon-refresh" value="update chart" /> 19 </div> 20 21 19 22 20 23 <% } %> -
branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Chart/Index.aspx
r6118 r6318 1 1 <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> 2 3 <asp:Content ID="Content3" runat="server" ContentPlaceHolderID="SubMenuContent"> 4 <% Html.RenderAction("Menu","Query"); %> 5 </asp:Content> 2 6 3 7 <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server"> … … 7 11 <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server"> 8 12 9 <h2> Index (Chart)</h2>13 <h2>Bubble Chart</h2> 10 14 11 15
Note: See TracChangeset
for help on using the changeset viewer.