• <menu id="w2i4a"></menu>
  • logo TeeChart .NET教程2018
    文檔首頁(yè)>>TeeChart .NET教程2018>>【TeeChart .NET教程】(十)Web表單示例

    【TeeChart .NET教程】(十)Web表單示例


    【下載TeeChart.Net最新版本】

    Web表單示例

    如何創(chuàng)建動(dòng)態(tài)WebChart
    • 在服務(wù)器上創(chuàng)建一個(gè)新的WebForm應(yīng)用程序,并確保它在表單上沒有任何內(nèi)容正確運(yùn)行。
    • 從Steema ToolBox選項(xiàng)卡中,選擇一個(gè)WebChart對(duì)象并將其拖動(dòng)到WebForm上。
    • 選擇新的WebChart1對(duì)象,然后在“Properties ”窗口中導(dǎo)航到TempChart屬性并將其從“File ”更改為“Session”。這意味著WebChart生成的所有臨時(shí)圖表都將存儲(chǔ)在會(huì)話變量中,而不是存儲(chǔ)在臨時(shí)文件夾中。
    • 為了從會(huì)話變量中恢復(fù)臨時(shí)圖表,添加一個(gè)新的表單,其中包含一些簡(jiǎn)單的代碼。右鍵單擊ASP.NET項(xiàng)目并添加一個(gè)新的WebForm,命名為GetChart.aspx?,F(xiàn)在確保Page_Load事件如下所示:
      private void Page_Load(object sender, System.EventArgs e) 
      { 
           string chartName=Request.QueryString["Chart"];               
           if (Session[chartName]!=null)              
          {                  
              System.IO.MemoryStream chartStream = new System.IO.MemoryStream();              
              chartStream=((System.IO.MemoryStream)Session[chartName];                  
              Response.OutputStream.Write(chartStream.ToArray(),0,(int)chartStream.Length);                  
              chartStream.Close();                  
              Session.Remove(chartName);              
          }  
      } 
    • 繼續(xù)生成一些基本的HotSpot功能; 在原始WebForm的Form_Load事件中,可以添加類似于以下內(nèi)容的代碼:
      	private void Page_Load(object sender, System.EventArgs e) 
      { 
           //Let's work with the Chart object for convenience 
           Steema.TeeChart.Chart Chart1 = WebChart1.Chart; 
       
           //Add in a series and fill it 
           Chart1.Aspect.View3D = false; 
           Steema.TeeChart.Styles.Bubble bubble1 = new Steema.TeeChart.Styles.Bubble(Chart1); 
           bubble1.FillSampleValues(); 
       
           //Add a SeriesToolTip to the Chart 
           Steema.TeeChart.Tools.SeriesHotspot seriesHotSpot1 = new Steema.TeeChart.Tools.SeriesHotspot(Chart1); 
           //Steema.TeeChart.Styles.MapAction.Mark is the default value 
           seriesHotSpot1.MapAction = Steema.TeeChart.Styles.MapAction.Mark; 
      } 
      	
    • 要向圖表添加縮放功能,我們需要做的就是添加一個(gè)zoomtool和一些簡(jiǎn)單的代碼來(lái)控制縮放狀態(tài):
      		private void Page_Load(object sender, System.EventArgs e) 
      { 
           //Let's work with the Chart object for convenience 
           Steema.TeeChart.Chart Chart1 = WebChart1.Chart; 
       
           //Add in a series and fill it 
           Chart1.Aspect.View3D = false; 
           Steema.TeeChart.Styles.Bubble bubble1 = new Steema.TeeChart.Styles.Bubble(Chart1); 
           bubble1.FillSampleValues(); 
       
           //Add a SeriesToolTip to the Chart 
           Steema.TeeChart.Tools.SeriesHotspot seriesHotSpot1 = new Steema.TeeChart.Tools.SeriesHotspot(Chart1); 
           //Steema.TeeChart.Styles.MapAction.Mark is the default value 
           seriesHotSpot1.MapAction = Steema.TeeChart.Styles.MapAction.Mark; 
       
           //Add a ZoomTool to the Chart 
           Steema.TeeChart.Tools.ZoomTool zoomTool1 = new Steema.TeeChart.Tools.ZoomTool(Chart1); 
       
           // *************** Code for zoom support *************** 
           //check whether zoom request is being sent 
           CheckZoom(WebChart1); 
      } 
       
      private void CheckZoom(WebChart wChart) 
      { 
           ArrayList zoomedState=(ArrayList)Session[wChart.ID+"Zoomed"]; 
           zoomedState=((Steema.TeeChart.Tools.ZoomTool)wChart.Chart.Tools[0]).SetCurrentZoom(Request,zoomedState); 
           if (zoomedState==null) 
              Session.Remove(wChart.ID+"Zoomed"); 
           else 
              Session.Add(wChart.ID+"Zoomed",zoomedState); 
      } 
      		
    • 有一個(gè)交互式圖表,可響應(yīng)鼠標(biāo)懸停和鼠標(biāo)點(diǎn)擊事件。SeriesHotSpot(在這種情況下與氣泡系列相關(guān)聯(lián))將在鼠標(biāo)移過(guò)它時(shí)顯示系列標(biāo)記的值。但是,通過(guò)MapAction屬性,我們可以在鼠標(biāo)移過(guò)它時(shí)自定義SeriesHotSpot的行為。例如,我們可能希望點(diǎn)擊其中一個(gè)氣泡將我們帶到指定的URL; 通過(guò)將MapAction屬性設(shè)置為URL,鏈接SeriesHotSpot事件并在其中指定URL,在Page_Load事件中:
      	seriesHotSpot1.MapAction = Steema.TeeChart.Styles.MapAction.URL; 
      	seriesHotSpot1.GetHTMLMap += new Steema.TeeChart.Tools.SeriesHotspotEventHandler(seriesHotSpot1_GetHTMLMap); 
      	
    • GetHTMLMap方法:
      	private void seriesHotSpot1_GetHTMLMap(Steema.TeeChart.Tools.SeriesHotspot sender, Steema.TeeChart.Tools.SeriesHotspotEventArgs e)  
      { 
           e.PointPolygon.Title = "Go to the Steema web"; 
           e.PointPolygon.HREF = "http://www.steema.com"; 
           e.PointPolygon.Attributes = "target='_blank'"; 
      } 
      	
    • 有效地將MapAction屬性設(shè)置為Script允許用戶定義任何事件,TeeChart為用戶提供了一些有用的內(nèi)置腳本,可以通過(guò)HelperScripts枚舉來(lái)調(diào)用。例如,要在鼠標(biāo)懸停在其中一個(gè)氣泡序列點(diǎn)上時(shí)打開圖像文件,我們將添加以下代碼,在Page_Load事件中:
      	seriesHotSpot1.MapAction = Steema.TeeChart.Styles.MapAction.Script; 
      	seriesHotSpot1.HelperScript = Steema.TeeChart.Tools.HotspotHelperScripts.Annotation;
      	
    • 這里的第二行確保將相關(guān)的JavaScript添加到客戶端瀏覽器中,GetHTMLMap方法:
      	private void seriesHotSpot1_GetHTMLMap(Steema.TeeChart.Tools.SeriesHotspot sender, Steema.TeeChart.Tools.SeriesHotspotEventArgs e)  
      { 
           e.PointPolygon.Attributes=String.Format(Steema.TeeChart.Texts.HelperScriptAnnotation, ""); 
      }
      

    進(jìn)一步自定義行為意味著設(shè)計(jì)自定義的JavaScript例程,將它們添加到客戶端瀏覽器,然后通過(guò)將它們及其參數(shù)添加到e.PointPolygon.Attributes來(lái)調(diào)用它們。

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();