チャートコントロールをSPREADコントロールと組み合わせて使用すると、本格的な外観のチャートによってデータを表示できます以下の各トピックでは、チャートコントロールの機能全般、およびその用法について説明します。
なお、チャートを使用するには、web.config ファイルに以下のようなHttpHandler要素を追加する必要があります。
<configuration> <system.web> <httpHandlers> <add path="FpChart.axd" verb="*" type="FarPoint.Web.Chart.ChartImageHttpHandler" validate="true"/> </httpHandlers> …
IIS7ではsystem.webServer セクションに以下のようなhandlers要素を追加してください。
<system.webServer> <handlers> <add name="FpChart" verb="*" path="FpChart.axd" preCondition="integratedMode" type="FarPoint.Web.Chart.ChartImageHttpHandler" /> </handlers>