求教Tchart在asp.net 2.0中的使用问题
本人是asp.net新手,之前用vb.net2005开发过,现在需要用到asp.net 2.0了,问题如下我照着网上对TCHART的C#代码改成vb.net的实验,代码如下
getchart.vb:
Dim chartName As String = Request.QueryString("Chart")
If Not Session(chartName) Is Nothing Then
Dim chartStream As System.IO.MemoryStream = New System.IO.MemoryStream()
chartStream = (CType(Session(chartName), System.IO.MemoryStream))
Response.OutputStream.Write(chartStream.ToArray(), 0, CType(chartStream.Length, Integer))
chartStream.Close()
Session.Remove(chartName)
End If
showchart.vb:
Dim Chart1 As Steema.TeeChart.Chart = WebChart1.Chart
Chart1.Aspect.View3D = False
Dim bubble1 As Steema.TeeChart.Styles.Bubble = New Steema.TeeChart.Styles.Bubble(Chart1)
bubble1.FillSampleValues()
结果出错,说Dim bubble1 As Steema.TeeChart.Styles.Bubble = New Steema.TeeChart.Styles.Bubble(Chart1)
这行 未将对象引用设置到对象的实例。
我以前也是同样的代码,好像成功运行过。不知道这次问题出在哪里。。。。虚心求教! --------------------编程问答-------------------- 呵呵 我学的是C#真的想帮你的忙但帮不上啊, --------------------编程问答-------------------- 您能贴点C#的关于tchart的基本代码吗?
我现在对TCHART没什么概念,谢谢了!! --------------------编程问答-------------------- 顶下!!!
补充:.NET技术 , ASP.NET