Using the following example as a starting point, I have been able to pass in my type float arrays into the class /vtkBarChartActor. Using mostly bits of code 
from the example mentioned, I can render the plot as well. My new problem is that 
there is nothing plotted, it is just a blank chart with an x and y axis.
 The y axis is scaled to fit the data in my arrays. I have checked that by
 changing the values stored in a single array and passing only that 
array into the /vtkBarChartActor so I know it is connecting properly or at least that is is recognizing the range of data that is being passed through it...I just am not sure how to make it place a bar for each data
 point like the example shown does. Here is some relevant code to what I
 am doing:<br>
<br><br>//this is inside some for loops and is getting filled with data,
 the iterators of the for loops are i and n and are used to tell the 
array which cell to put the data in<br>  vtkSmartPointer&lt;vtkFloatArray&gt; Angle =<br>
      vtkSmartPointer&lt;vtkFloatArray&gt;::New();      <br>  Angle-&gt;InsertValue( i + (5*n), acos( DotProduct /<br>                             ( EdgeLength-&gt;GetValue( i+(5*n ) <br>                             * Magnitude_2) ) ) );<br>

<br>//the for loops have now been closed and the array is full of angles ranging from 0.0 to about 3.0<br> vtkSmartPointer&lt;vtkDataObject&gt; DataObject = <br>        vtkSmartPointer&lt;vtkDataObject&gt;::New();<br>      DataObject-&gt;GetFieldData()-&gt;AddArray ( Angle );<br>
<br>
      vtkSmartPointer&lt;vtkBarChartActor&gt; Chart =<br>    vtkSmartPointer&lt;vtkBarChartActor&gt;::New();<br>      Chart-&gt;SetInput( DataObject );<br>      Chart-&gt;SetTitle( &quot;Histogram&quot; );<br>      Chart-&gt;GetPositionCoordinate()-&gt;SetValue(0.1,0.1,0.0);<br>

      Chart-&gt;GetPosition2Coordinate()-&gt;SetValue(0.9,0.8,0.0);<br>      Chart-&gt;GetProperty()-&gt;SetColor(1,1,1);<br>      Chart-&gt;GetLegendActor()-&gt;SetNumberOfEntries( DataObject-&gt;GetFieldData()-&gt;<br>
             GetArray(0)-&gt;GetNumberOfTuples() );<br>
      Chart-&gt;LegendVisibilityOn();<br>      Chart-&gt;LabelVisibilityOn();<br>      Chart-&gt;SetBarColor( 0,1.0,1.0,1.0 );<br>      Chart-&gt;SetYTitle( &quot;Angle&quot; );<br><br>      // Visualize the histogram(s)<br>

      vtkSmartPointer&lt;vtkRenderer&gt; renderer = <br>        vtkSmartPointer&lt;vtkRenderer&gt;::New();<br>      renderer-&gt;AddActor( Chart );<br> <br>      vtkSmartPointer&lt;vtkRenderWindow&gt; renderWindow = <br>
        vtkSmartPointer&lt;vtkRenderWindow&gt;::New();<br>
      renderWindow-&gt;AddRenderer( renderer );<br>      renderWindow-&gt;SetSize(640, 480);<br> <br>      vtkSmartPointer&lt;vtkRenderWindowInteractor&gt; interactor =<br>        vtkSmartPointer&lt;vtkRenderWindowInteractor&gt;::New();<br>

      interactor-&gt;SetRenderWindow( renderWindow );<br> <br>      // Initialize the event loop and then start it<br>      interactor-&gt;Initialize();<br>      interactor-&gt;Start();<br><br><br><br>like
 I mentioned, this does not throw any errors or problems, it just 
creates a blank plot that has a x axis that is not labeled and a y axis 
that is labeled &quot;Angle&quot; and the y axis is always scaled to fit my float array 
Angle. Any ideas as to why it is not plotting the data stored in the 
array? And thank you for your help and time.<br>
<br>Luke H