Hiding Charts

  • Thread starter Thread starter Rob
  • Start date Start date
R

Rob

I've created a dynamic report which has many charts on
it. A user selects which charts they want to see on the
report. How do I get these chart to shrink or disappear?
 
I'm not sure you can get it to shrink but you can set its visible property
to False. It might be possible to place the charts in subreports that can
grow. Possibly if they are made invisible, they won't grow.
 
Could you use a single chart (or a form containing a chart) in the detail
section of the report? Set up the report so it displays one detail record
for each chart selected by the user, and put some code in the format event
of the detail section to modify the chart, or change which chart is
displayed.
 
Back
Top