More detail would be helpful to understand exactly what you want, vs.
what you're seeing. Please be as specific and pedantic as possible.
 
If you want to get rid of the surrounding chart graphics, you can:
 
1) zero out the backgroundElements array
2) assign axisRenderers that hide all of their elements.  I don't
remember exactly which set of styles/properties you need, but if you
look at the APIs for AxisRenderer it should be apparent. something like:
 
<CartesianChart>
   <backgroundElements>
      <Array />
   </>
   <horizontalAxisRenderer>
        <AxisRenderer showLine="false" tickPlacement="none"
showLabels="false"  etc... />
   </>
   <verticalAxisRenderer>
        <AxisRenderer showLine="false" tickPlacement="none"
showLabels="false"  etc... />
  </>
</>
 
Ely.

________________________________

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of ichgehe
Sent: Saturday, March 10, 2007 7:34 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Displaying single bar/column (Type: 100%)



You certainly know the charting components BarSeries or
ColumnSeries.... They are great, if you need exactly this kind of
view. But I am currently in a bit of a problem, because I need a
column-/bar component which only is able to show ONE bar or column for
a series of data.
You probably say: 'Easy thing!' - just use bar-/columnseries with type
set to 100% and you will get only one bar with all data... but in
fact, you also get the cartesian chart around it, which annoys me. I
just want to have one simple Bar/Column which is able to show me
different values (Type 100%) without anything. I tried already to use
the "IBar" Interface, but no luck. 
Someone told me I have to have a look in the samples.zip of FDS (1.0)?
for an example 'Sector' but have not found it....

Any help or hint is really appreciated...



 

Reply via email to