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

📄 drillslice.aspx

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


void Page_Load(Object sender,EventArgs e)
{

	Chart.Width = 600;
	Chart.Height = 350;
	Chart.TempDirectory = "temp";
	Chart.Use3D = true;
	
	// Set the chart type.
	Chart.Type = ChartType.Donuts;	
	
	// Get the static chart data.
	SeriesCollection sc = getStaticData();
	
	
	// When a pie slice is clicked we'll pass the series and element name in the query string.
	// In order to pass info to the next time this page loads we will specify a url to use on the pie slice link.
	// By setting the default element all elements will inherit this setting.
	Chart.DefaultSeries.DefaultElement.URL = "?eName=%Name&sName=%SeriesName";
	
	
	// Here we will look for info in the query string that will tell us which slice was clicked.
	// Get the series and element names from the query string.
	string seriesName = Request.QueryString["sName"];
	string elementName = Request.QueryString["eName"];
	
	// Use the GetElement method to find our element by passing the series and element name.
	Element el = sc.GetElement(seriesName,elementName);
	
	// If we get an element with the specified name, set the ExplodeSlice property to true.
	if(el != null)
		el.ExplodeSlice = true;
	
	// Add the static data.
	Chart.SeriesCollection.Add(sc);
    
    
}

SeriesCollection getStaticData()
{
	// Create a series collection object.
	SeriesCollection SC = new SeriesCollection();
	
	// Create a series object
	Series s = new Series("mySeries");
	
	// Add some elements
	s.Elements.Add(new Element("1",15));
	s.Elements.Add(new Element("2",13));
	s.Elements.Add(new Element("3",17));
	s.Elements.Add(new Element("4",16));
	
	// Add the series to the series collection.
	SC.Add(s);
	
	// Repeat with another series.
	Series s2 = new Series("mySeries 2");
	s2.Elements.Add(new Element("1",15));
	s2.Elements.Add(new Element("2",13));
	s2.Elements.Add(new Element("3",17));
	s2.Elements.Add(new Element("4",16));
	
	SC.Add(s2);
	
	return SC;
}
		</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 + -