gaugeangles.aspx

来自「掌握学习.net开发的非常好的资料」· ASPX 代码 · 共 27 行

ASPX
27
字号
<%@ 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)
   
   ' Set up the chart
   Chart.Type = ChartType.Gauges
   Chart.Size = "500X350"
   Chart.TempDirectory = "temp"
   Chart.Debug = True
   Chart.LegendBox.Position = LegendBoxPosition.None
   Chart.DefaultAxis.Label.Font = New Font("Arial", 9)
   
   
   ' This sample will demonstrate how to manipulate gauge axis orientation and sweep angles.
   
   ' Create a series with an element.
   Dim s As New Series("OrientationAngle " + ControlChars.Tab + "0

⌨️ 快捷键说明

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