Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Chart/BubbleChart.ascx @ 12726

Last change on this file since 12726 was 6318, checked in by cfleisch, 14 years ago

#1499 styling filter and bubblechart, filter bugfixes

File size: 1.1 KB
Line 
1<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
2<%@ Import Namespace="HLWebOKBQueryPlugin.Models" %>
3<%@ Register assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" namespace="System.Web.UI.DataVisualization.Charting" tagprefix="asp" %>
4
5<div style="background-color: #eeeeee;border-style:solid;border-color:#aaa;border-width:1px;padding:10px;list-style-type:none;">
6<% using (Html.BeginForm("UpdateBubbleChart","Chart")) %>
7<% { %>
8
9<%: Html.Label("X-Axis")%>
10<%: Html.DropDownList("valuesAxisXCombobox", new SelectList(((ChartModel)Model).valuesAxisX))%>
11<br />
12<%: Html.Label("Y-Axis")%>
13<%: Html.DropDownList("valuesAxisYCombobox", new SelectList(((ChartModel)Model).valuesAxisY))%>
14<br />
15<%: Html.Label("Bubble Size")%>
16<%: Html.DropDownList("bubbleSizeCombobox", new SelectList(((ChartModel)Model).bubbleSize))%>
17
18<input type="submit" class="hl-icon-refresh" value="update chart" />
19</div>
20
21
22
23<% } %>
24
25
26<img src="/Chart/CreateBubbleChart?<%= Model %>" alt="" /> 
Note: See TracBrowser for help on using the repository browser.