⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 legendboxelement2.aspx

📁 掌握学习.net开发的非常好的资料
💻 ASPX
字号:
<%@ Page Language="VB" Description="dotnetCHARTING Component" %>
<%@ Register TagPrefix="dotnet"  Namespace="dotnetCHARTING" Assembly="dotnetCHARTING"%>
<%@ Import Namespace="System.Drawing" %>
<HTML>
	<HEAD>
		<TITLE>.netCHARTING Sample</TITLE>
		<script runat="server">
Sub Page_Load(sender As [Object], e As EventArgs)
   
   Chart.Type = ChartType.Combo
   Chart.Width = Unit.Parse(600)
   Chart.Height = Unit.Parse(350)
   Chart.TempDirectory = "temp"
   Chart.Debug = True
   Chart.Title = "Sales for 2002"
   Chart.DefaultSeries.DefaultElement.ShowValue = True
   
   'This sample will demonstrate how to use the legend box to describe the 'other' element of a limited series.
   'Setup the data engine	
   Dim de As New DataEngine("../../database/chartsample.mdb")
   de.StartDate = New System.DateTime(2002, 1, 1, 0, 0, 0)
   de.EndDate = New System.DateTime(2002, 12, 31, 23, 59, 59)
   de.SqlStatement = "SELECT Name,Sum(Quantity) FROM Orders WHERE OrderDate >= #STARTDATE# AND OrderDate <= #ENDDATE#  GROUP BY Orders.Name ORDER BY Sum(Quantity) DESC"
   
   ' Limit to 5 elements
   de.Limit = "5"
   
   ' Add the series the the chart
   Chart.SeriesCollection.Add(de.GetSeries())
   
   ' Update the dataEngine to get only the excluded part.
   de.LimitMode = LimitMode.ExcludeTop
   de.ShowOther = False
   ' Get the new series.
   Dim mySC2 As SeriesCollection = de.GetSeries()
   
   ' Create a legend box to hold the new series
   Dim lb As New LegendBox()
   lb.Template = "%Value %Name"
   lb.HeaderEntry.Visible = True
   lb.HeaderEntry.Value = "Other"
   lb.Position = New Point(427, 105)
   lb.HeaderEntry.Name = ""
   
   ' Specify the data source.
   lb.DataSource = DataSource.FromSeriesCollection(mySC2, DataSourceType.Element)
   
   ' Add the new legend to the chart.
   Chart.ExtraLegendBoxes.Add(lb)
   
   ' So the column differences are more apparent, smart scale break will be activated.
   Chart.YAxis.SmartScaleBreak = True
End Sub 'Page_Load 

		</script>
	</HEAD>
	<BODY>
		<DIV align="center">
			<dotnet:Chart id="Chart" runat="server" Width="568px" Height="344px">
			</dotnet:Chart>
		</DIV>
	</BODY>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -