--- In [email protected], "Ely Greenfield" <[EMAIL PROTECTED]> wrote: > Oliver...my answer to you would be essentially the same as my answer to > Tom earlier in the conversation. You'll need to write a custom renderer > for each series in your stack if you want to render the first column > differently. The default charts assume that the renderers are there to > represent the state of the underlying data...since renderers are created > and destroyed dynamically as needed as the data changes, reaching into > the chart to try and modify individual renderers is shaky at best...if > you're making a change that isn't either a change to the inputs to the > chart (i.e., the data) or the logic of the chart (i.e., the rendering > algorithm of the renderers), there's no guarantee as to how long your > modification would apply. > > Ely.
I think I understand what you are saying, but it still does not make complete sense vis-a-vis my experience with stacked charts. In fact, I am using a custom renderer in some of my charts, so I realize that I can apply that separately for each series: but a stack represents multiple (usually all) of the series together as a single visual item (stacked boxes). What does not seem possible is to apply styles to a single set of the data in the chart (effectively one 'row' of data). BTW, I made a mistake earlier when I said I could get to the individual 'box' element drawn for a chart item. While this might be possible, what I am actually doing is dynamically changing the style on the ColumnSeries. The effect of this is shared across all of the data elements in each stack which are part of that series, but in this case I have a single stacked column so I am able to use it as a highlight effect. oliver

