ComponentOne Extender Controls for ASP.NET Web Forms
Wijmo Control Toolkit Extender Controls / Chart Extenders / C1PieChartExtender / C1PieChartExtender Tutorial / Step 1 of 3: Adding a C1PieChartExtender to the Page
In This Topic
    Step 1 of 3: Adding a C1PieChartExtender to the Page
    In This Topic

    In this topic you add some content to a Panel control and associate a C1PieChartExtender control with it to create a bar chart.

    1. In your Web application, add a standard Panel control to the main content of  your page.
    2. Click the Panel smart tag and select Add Extender from the Panel Tasks menu.
    3. In the Extender Wizard, select C1PieChartExtender and click OK. A C1PieChartExtender control is added to the page and the TargetControlID is set to Panel1.

      <cc1:C1PieChartExtender ID="Panel1_C1PieChartExtender" runat="server"

          ChartLabelFormatString="" TargetControlID="Panel1">

              <footer compass="South" visible="False">

              </footer>

              <axis>

                  <y compass="West" visible="False">

                      <labels textalign="Center">

                      </labels>

                      <gridmajor visible="True">

                      </gridmajor>

                  </y>

              </axis>

      </cc1:C1PieChartExtender>

    In the next step you will set some of the extender properties.