# C1.Win.FlexPivot.C1FlexPivotPanel

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_Win_FlexPivot_C1FlexPivotPanel" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel" class="text-break">C1FlexPivotPanel Class
</h1>
  <div class="markdown level0 summary"><p>Represents a control which provides a user interface for interactively transforming regular data tables into FlexPivot
pivot tables.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.marshalbyrefobject">MarshalByRefObject</a></div>
    <div class="level2"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.component">Component</a></div>
    <div class="level3"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.control">Control</a></div>
    <div class="level4"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.scrollablecontrol">ScrollableControl</a></div>
    <div class="level5"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.containercontrol">ContainerControl</a></div>
    <div class="level6"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.usercontrol">UserControl</a></div>
    <div class="level7"><a class="xref" href="C1.Win.FlexPivot.C1BasePanel.html">C1BasePanel</a></div>
    <div class="level8"><span class="xref">C1FlexPivotPanel</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.idroptarget">IDropTarget</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.isynchronizeinvoke">ISynchronizeInvoke</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.iwin32window">IWin32Window</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.ibindablecomponent">IBindableComponent</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.icomponent">IComponent</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.idisposable">IDisposable</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.forms.icontainercontrol">IContainerControl</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.isupportinitialize">ISupportInitialize</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.Win.FlexPivot.html">C1.Win.FlexPivot</a></h6>
  <h6><strong>Assembly</strong>: C1.Win.FlexPivot.10.dll</h6>
  <h5 id="C1_Win_FlexPivot_C1FlexPivotPanel_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[ToolboxBitmap(typeof(C1FlexPivotPanel), &quot;C1FlexPivotPanel.png&quot;)]
[ComplexBindingProperties(&quot;DataSource&quot;, &quot;DataMember&quot;)]
public class C1FlexPivotPanel : C1BasePanel, IDropTarget, ISynchronizeInvoke, IWin32Window, IBindableComponent, IComponent, IDisposable, IContainerControl, ISupportInitialize</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;ToolboxBitmap(GetType(C1FlexPivotPanel), &quot;C1FlexPivotPanel.png&quot;)&gt;
&lt;ComplexBindingProperties(&quot;DataSource&quot;, &quot;DataMember&quot;)&gt;
Public Class C1FlexPivotPanel
    Inherits C1BasePanel
    Implements IDropTarget, ISynchronizeInvoke, IWin32Window, IBindableComponent, IComponent, IDisposable, IContainerControl, ISupportInitialize</code></pre>
  </div>
  <h5 id="C1_Win_FlexPivot_C1FlexPivotPanel_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>Olap pivot tables group data into one or more dimensions. The dimensions are represented
by rows and columns on a grid, and the data is stored in the grid cells.</p>
<p>Use the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.DataSource.html#C1_Win_FlexPivot_C1FlexPivotPanel_DataSource">DataSource</a> property to set the source table, then use the 
<a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.FlexPivotTable.html#C1_Win_FlexPivot_C1FlexPivotPanel_FlexPivotTable">FlexPivotTable</a> property to get the output table.</p>
<p>If you use a <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotGrid.html">C1FlexPivotGrid</a> to show the output data, then set the grid's
<a class="xref" href="C1.Win.FlexPivot.C1FlexPivotGrid.DataSource.html#C1_Win_FlexPivot_C1FlexPivotGrid_DataSource">DataSource</a> property to the appropriate <b>C1FlexPivotPanel</b>.</p>
</div>
  <h3 id="constructors">Constructors
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel__ctor" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.#ctor">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.-ctor.html#C1_Win_FlexPivot_C1FlexPivotPanel__ctor">C1FlexPivotPanel()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of a <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.html">C1FlexPivotPanel</a>.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_DataMember" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.DataMember">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.DataMember.html#C1_Win_FlexPivot_C1FlexPivotPanel_DataMember">DataMember</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the specific list in a <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.DataSource.html#C1_Win_FlexPivot_C1FlexPivotPanel_DataSource">DataSource</a> object to be analyzed.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_DataSource" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.DataSource">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.DataSource.html#C1_Win_FlexPivot_C1FlexPivotPanel_DataSource">DataSource</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the object that contains the data to be analyzed.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_FieldsContextMenu" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.FieldsContextMenu">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.FieldsContextMenu.html#C1_Win_FlexPivot_C1FlexPivotPanel_FieldsContextMenu">FieldsContextMenu</a>
        </td>
        <td class="markdown level1 summary"><p>References the context menu for field lists.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_FlexPivotDefaultView" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.FlexPivotDefaultView">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.FlexPivotDefaultView.html#C1_Win_FlexPivot_C1FlexPivotPanel_FlexPivotDefaultView">FlexPivotDefaultView</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the default <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.ibindinglist">IBindingList</a> that exposes the data
in the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.FlexPivotTable.html#C1_Win_FlexPivot_C1FlexPivotPanel_FlexPivotTable">FlexPivotTable</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_FlexPivotEngine" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.FlexPivotEngine">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.FlexPivotEngine.html#C1_Win_FlexPivot_C1FlexPivotPanel_FlexPivotEngine">FlexPivotEngine</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a reference to the <span class="xref">C1.FlexPivot.C1FlexPivotEngine</span> that performs
the FlexPivot analysis for this <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.html">C1FlexPivotPanel</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_FlexPivotTable" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.FlexPivotTable">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.FlexPivotTable.html#C1_Win_FlexPivot_C1FlexPivotPanel_FlexPivotTable">FlexPivotTable</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a reference to the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.data.datatable">DataTable</a> that contains the
output of the FlexPivot analysis.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_PivotEngine" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.PivotEngine">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.PivotEngine.html#C1_Win_FlexPivot_C1FlexPivotPanel_PivotEngine">PivotEngine</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a reference to the <span class="xref">C1.PivotEngine.C1PivotEngine</span> that performs
the FlexPivot analysis for this <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.html">C1FlexPivotPanel</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_ShowFieldsCheckBoxes" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.ShowFieldsCheckBoxes">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ShowFieldsCheckBoxes.html#C1_Win_FlexPivot_C1FlexPivotPanel_ShowFieldsCheckBoxes">ShowFieldsCheckBoxes</a>
        </td>
        <td class="markdown level1 summary"><p>Determines whether checkboxes are displayed in the field list or not.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_ShowTotalsColumns" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.ShowTotalsColumns">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ShowTotalsColumns.html#C1_Win_FlexPivot_C1FlexPivotPanel_ShowTotalsColumns">ShowTotalsColumns</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether the FlexPivot output table
should include columns containing subtotals or grand totals.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_ShowTotalsForColumns" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.ShowTotalsForColumns">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ShowTotalsForColumns.html#C1_Win_FlexPivot_C1FlexPivotPanel_ShowTotalsForColumns">ShowTotalsForColumns</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether the FlexPivot output table
should include columns containing subtotals or grand totals.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_ShowTotalsForRows" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.ShowTotalsForRows">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ShowTotalsForRows.html#C1_Win_FlexPivot_C1FlexPivotPanel_ShowTotalsForRows">ShowTotalsForRows</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether the FlexPivot output table
should include rows containing subtotals or grand totals.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_ShowTotalsRows" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.ShowTotalsRows">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ShowTotalsRows.html#C1_Win_FlexPivot_C1FlexPivotPanel_ShowTotalsRows">ShowTotalsRows</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether the FlexPivot output table
should include rows containing subtotals or grand totals.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_ShowZeros" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.ShowZeros">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ShowZeros.html#C1_Win_FlexPivot_C1FlexPivotPanel_ShowZeros">ShowZeros</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether the FlexPivot output table
should use zeros to indicate missing values.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_TotalsBeforeData" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.TotalsBeforeData">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.TotalsBeforeData.html#C1_Win_FlexPivot_C1FlexPivotPanel_TotalsBeforeData">TotalsBeforeData</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value that determines whether row and column totals
should be displayed before or after regular data rows and columns.
If this value is set to true, total rows appear above data rows
and total columns appear on the left of regular data columns.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_ViewDefinition" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.ViewDefinition">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ViewDefinition.html#C1_Win_FlexPivot_C1FlexPivotPanel_ViewDefinition">ViewDefinition</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets an XML string containing an FlexPivot view definition.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_Workspace" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.Workspace">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.Workspace.html#C1_Win_FlexPivot_C1FlexPivotPanel_Workspace">Workspace</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the DataEngine workspace associated with the control.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_BeginInit" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.BeginInit">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.BeginInit.html#C1_Win_FlexPivot_C1FlexPivotPanel_BeginInit">BeginInit()</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_ConnectCube_System_String_System_String_" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.ConnectCube(System.String,System.String)">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ConnectCube.html#C1_Win_FlexPivot_C1FlexPivotPanel_ConnectCube_System_String_System_String_">ConnectCube(string, string)</a>
        </td>
        <td class="markdown level1 summary"><p>Connect to cube data source.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_ConnectDataEngine_System_String_" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.ConnectDataEngine(System.String)">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ConnectDataEngine.html#C1_Win_FlexPivot_C1FlexPivotPanel_ConnectDataEngine_System_String_">ConnectDataEngine(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Connect to a C1.DataEngine table.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_CreateWorkspace" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.CreateWorkspace">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.CreateWorkspace.html#C1_Win_FlexPivot_C1FlexPivotPanel_CreateWorkspace">CreateWorkspace()</a>
        </td>
        <td class="markdown level1 summary"><p>Creates a new instance of <span class="xref">C1.DataEngine.Workspace</span> class.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_Dispose_System_Boolean_" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.Dispose(System.Boolean)">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.Dispose.html#C1_Win_FlexPivot_C1FlexPivotPanel_Dispose_System_Boolean_">Dispose(bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Clean up any resources being used.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_EndInit" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.EndInit">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.EndInit.html#C1_Win_FlexPivot_C1FlexPivotPanel_EndInit">EndInit()</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_OnDataEngineConnectionChanged_System_EventArgs_" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.OnDataEngineConnectionChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.OnDataEngineConnectionChanged.html#C1_Win_FlexPivot_C1FlexPivotPanel_OnDataEngineConnectionChanged_System_EventArgs_">OnDataEngineConnectionChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.DataEngineConnectionChanged.html">DataEngineConnectionChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_OnDataSourceChanged_System_EventArgs_" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.OnDataSourceChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.OnDataSourceChanged.html#C1_Win_FlexPivot_C1FlexPivotPanel_OnDataSourceChanged_System_EventArgs_">OnDataSourceChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.DataSourceChanged.html">DataSourceChanged</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_OnFontChanged_System_EventArgs_" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.OnFontChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.OnFontChanged.html#C1_Win_FlexPivot_C1FlexPivotPanel_OnFontChanged_System_EventArgs_">OnFontChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Overriden to update context menu font.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_OnLoadedFields_System_EventArgs_" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.OnLoadedFields(System.EventArgs)">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.OnLoadedFields.html#C1_Win_FlexPivot_C1FlexPivotPanel_OnLoadedFields_System_EventArgs_">OnLoadedFields(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.LoadedFields.html">LoadedFields</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_OnUpdated_System_EventArgs_" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.OnUpdated(System.EventArgs)">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.OnUpdated.html#C1_Win_FlexPivot_C1FlexPivotPanel_OnUpdated_System_EventArgs_">OnUpdated(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.Updated.html">Updated</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_OnUpdating_System_EventArgs_" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.OnUpdating(System.EventArgs)">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.OnUpdating.html#C1_Win_FlexPivot_C1FlexPivotPanel_OnUpdating_System_EventArgs_">OnUpdating(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.Updating.html">Updating</a> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_OnViewDefinitionChanged_System_EventArgs_" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.OnViewDefinitionChanged(System.EventArgs)">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.OnViewDefinitionChanged.html#C1_Win_FlexPivot_C1FlexPivotPanel_OnViewDefinitionChanged_System_EventArgs_">OnViewDefinitionChanged(EventArgs)</a>
        </td>
        <td class="markdown level1 summary"><p>Raises the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ViewDefinitionChanged.html">ViewDefinitionChanged</a> event.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="events">Events
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_DataEngineConnectionChanged" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.DataEngineConnectionChanged">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.DataEngineConnectionChanged.html">DataEngineConnectionChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when data engine table connected.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_DataSourceChanged" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.DataSourceChanged">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.DataSourceChanged.html">DataSourceChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when the data source changes.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_FieldSettingsDialogOpening" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.FieldSettingsDialogOpening">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.FieldSettingsDialogOpening.html">FieldSettingsDialogOpening</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when the Field Settings dialog window is opening.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_LoadedFields" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.LoadedFields">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.LoadedFields.html">LoadedFields</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs after the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.PivotEngine.html#C1_Win_FlexPivot_C1FlexPivotPanel_PivotEngine">PivotEngine</a> finishes loading the fields for
the current DataSource.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_Updated" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.Updated">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.Updated.html">Updated</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs after the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.PivotEngine.html#C1_Win_FlexPivot_C1FlexPivotPanel_PivotEngine">PivotEngine</a> finishes the FlexPivot analysis.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_Updating" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.Updating">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.Updating.html">Updating</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs before the <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.PivotEngine.html#C1_Win_FlexPivot_C1FlexPivotPanel_PivotEngine">PivotEngine</a> starts updating the output FlexPivot table.</p>
</td>
      </tr>
      <tr>
        <td id="C1_Win_FlexPivot_C1FlexPivotPanel_ViewDefinitionChanged" data-uid="C1.Win.FlexPivot.C1FlexPivotPanel.ViewDefinitionChanged">
          <a class="xref" href="C1.Win.FlexPivot.C1FlexPivotPanel.ViewDefinitionChanged.html">ViewDefinitionChanged</a>
        </td>
        <td class="markdown level1 summary"><p>Occurs when the view definition changes, before the output table is updated.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
