# GrapeCity.ActiveReports.Chart.DoubleArray.-ctor

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor*">DoubleArray Constructor
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor*"></a>
<h4 id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_System_Double___" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor(System.Double[])">DoubleArray(double[])</h4>
<div class="markdown level1 summary"><p>Initializes new instance of the DoubleArray</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public DoubleArray(double[] data)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.double">double</a>[]</td>
      <td><span class="parametername">data</span></td>
      <td><p>Data to initialize array with</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor*"></a>
<h4 id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_System_DateTime___" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor(System.DateTime[])">DoubleArray(DateTime[])</h4>
<div class="markdown level1 summary"><p>Initializes new instance of the DoubleArray</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public DoubleArray(DateTime[] data)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.datetime">DateTime</a>[]</td>
      <td><span class="parametername">data</span></td>
      <td><p>Data to initialize array with</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor*"></a>
<h4 id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_System_Double___System_Boolean___" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor(System.Double[],System.Boolean[])">DoubleArray(double[], bool[])</h4>
<div class="markdown level1 summary"><p>Initializes new instance of the DoubleArray</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public DoubleArray(double[] data, bool[] isDateTime)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.double">double</a>[]</td>
      <td><span class="parametername">data</span></td>
      <td><p>Data to initialize array with</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a>[]</td>
      <td><span class="parametername">isDateTime</span></td>
      <td><p>Specifies whether the array value is a DateTime value</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor*"></a>
<h4 id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_System_String_System_IFormatProvider_" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor(System.String,System.IFormatProvider)">DoubleArray(string, IFormatProvider)</h4>
<div class="markdown level1 summary"><p>Initializes new instance of the DoubleArray. This constructor is used by code serialization.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public DoubleArray(string data, IFormatProvider culture)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">data</span></td>
      <td><p>Data to initialize array with. Format is numbers in invariant culture separated by semicolons</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.iformatprovider">IFormatProvider</a></td>
      <td><span class="parametername">culture</span></td>
      <td></td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor*"></a>
<h4 id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_System_String_" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor(System.String)">DoubleArray(string)</h4>
<div class="markdown level1 summary"><p>For internal use only.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public DoubleArray(string data)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">data</span></td>
      <td></td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor*"></a>
<h4 id="GrapeCity_ActiveReports_Chart_DoubleArray__ctor_System_String_GrapeCity_ActiveReports_Chart_GraphXmlSerializationContext_" data-uid="GrapeCity.ActiveReports.Chart.DoubleArray.#ctor(System.String,GrapeCity.ActiveReports.Chart.GraphXmlSerializationContext)">DoubleArray(string, GraphXmlSerializationContext)</h4>
<div class="markdown level1 summary"><p>For internal use only.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public DoubleArray(string xml, GraphXmlSerializationContext context)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">xml</span></td>
      <td></td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.ActiveReports.Chart.GraphXmlSerializationContext.html">GraphXmlSerializationContext</a></td>
      <td><span class="parametername">context</span></td>
      <td></td>
    </tr>
  </tbody>
</table>
</div>
