这似乎是一个非常愚蠢的问题,但我无法在链接“steema.net/TeeChartForNET”上找到 Teechart 的示例。我一直在搜索,所有来源似乎都指向此链接以获取示例。但是在此页面上,它要求验证用户名和密码,当我输入我的客户编号和密码时,它不接受它。
(PS。我使用的是评估版)
我真的需要查看示例工作示例才能让我的图表正常运行。我尝试了很多代码,但无法在页面上显示图表。
感谢您提前提供任何帮助。
谢谢@Narcis。我在提到的位置找到了示例示例。我将示例示例中的代码复制粘贴到我的应用程序的页面中,但图表仍然没有显示。知道我可能做错了什么吗?这是我的代码
ASPX 代码
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestTChart.aspx.cs" Inherits="Recovery_TestTChart" %>
<%@ Register TagPrefix="tchart" Namespace="Steema.TeeChart.Web" Assembly="TeeChart" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<tchart:WebChart id="WebChart1"
style="Z-INDEX: 107; LEFT: 24px; POSITION: absolute; TOP: 60px" runat="server"
Width="432px" Height="290px" Config="some long key"
TempChart="Httphandler" AutoPostback="False"
GetChartFile="GetChart.aspx"></tchart:WebChart>
</div>
</form>
</body>
</html>
ASPX.CS 代码
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
public partial class Recovery_TestTChart : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Steema.TeeChart.Chart ch1 = WebChart1.Chart;
ch1.Series.RemoveAllSeries();
ch1.Series.Add(new Steema.TeeChart.Styles.Bubble());
ch1.Series[0].FillSampleValues();
ch1.Legend.Shadow.Visible = false;
ch1.Legend.Visible = false;
(ch1.Series[0] as Steema.TeeChart.Styles.Bubble).Pointer.Style = Steema.TeeChart.Styles.PointerStyles.PolishedSphere;
}
}
我还在与此页面相同的目录中添加了一个名为 GetChart.aspx 的文件。