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

📄 trendlinepower.aspx

📁 掌握学习.net开发的非常好的资料
💻 ASPX
字号:
	<%@ Page Language="VB" Description="dotnetCHARTING Component" %>
<%@ Register TagPrefix="dotnet"  Namespace="dotnetCHARTING" Assembly="dotnetCHARTING"%>
<%@ Import Namespace="System.Drawing" %>
<%@ Import Namespace="System.Drawing.Drawing2D" %>
<%@ Import Namespace="dotnetCHARTING"%>
<HTML>
	<HEAD>
		<TITLE>.netCHARTING Forecast Sample</TITLE>
		<script runat="server">


Sub Page_Load(sender As [Object], e As EventArgs)
   
   ' This sample demonstrates the use of TrendLinePower from  within Forecasting 	
   ' which find the best fitting power curve to sets of data
   ' The Forecast Chart
   ForecastChart.Title = "Forecast Power"
   ForecastChart.TempDirectory = "temp"
   ForecastChart.Debug = True
   ForecastChart.Size = "1000x400"
   ForecastChart.LegendBox.Template = "%icon %name"
   ForecastChart.XAxis.Scale = Scale.Normal
   
   Dim spower As New SeriesCollection()
   Dim sampledata1 As New Series("Sample 1")
   Dim i As Integer
   For i = 1 To 9
      Dim el As New Element()
      el.YValue = 2 * Math.Pow(i, 3)
      el.XValue = i
      sampledata1.Elements.Add(el)
   Next i
   
   spower.Add(sampledata1)
   spower(0).Type = SeriesType.Marker
   
   ForecastChart.SeriesCollection.Add(spower)
   
   ' Here we create a series which will hold the Y values calculated with the  PowerFit indicator
   Dim trendLinePower As New Series()
   trendLinePower = ForecastEngine.TrendLinePower(sampledata1)
   
   'The next two lines display no to the chart the power function used
   ' to fit the curve
   trendLinePower.Elements(0).SmartLabel.Text = "Function: %Function"
   trendLinePower.Elements(0).ShowValue = True
   trendLinePower.DefaultElement.Marker = New ElementMarker(ElementMarkerType.None)
   
   trendLinePower.DefaultElement.Color = Color.FromArgb(255, 99, 49)
   trendLinePower.Type = SeriesType.Spline
   ForecastChart.SeriesCollection.Add(trendLinePower)
End Sub 'Page_Load 

		</script>
	</HEAD>
	<BODY>
		<DIV align="center">
			
			<dotnet:Chart id="ForecastChart" runat="server"/>
			</dotnet:Chart>
			
		</DIV>
	</BODY>
</HTML>

⌨️ 快捷键说明

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