Fixed bar series
Posted: Sat Sep 10, 2005 7:14 pm
Is there anyway to create a fixed bar series based on a stacked bar chart. What I would like to accomplish is for the first bar to always display the same set of fixed values: 23, 54, 23. The remaining datavalues would then be graphed based on the values within the recordset that are set in the XValues.ValueSource property. as in the following:
.Series(i - 1).XValues.ValueSource = m_rsFiltered.Fields(0).Name
Also, I would like to keep this static series to display ermanently based on the maximum number of bars displayed per page. As in the following:
TChart1.Page.MaxPointsPerPage = 5
So when the user pages through the available bars the first fixed status series always displays in comparison to the other bars.
.Series(i - 1).XValues.ValueSource = m_rsFiltered.Fields(0).Name
Also, I would like to keep this static series to display ermanently based on the maximum number of bars displayed per page. As in the following:
TChart1.Page.MaxPointsPerPage = 5
So when the user pages through the available bars the first fixed status series always displays in comparison to the other bars.