Hi Paul,
ChartDirector does not automatically perform data "amalgamation". For your case, ChartDirector will draw all 1440 bars, even if they may overlap, and it will auto create 1440 regions for the image map.
Data "amalgamation", or data aggregation, is usually the function of the database. For a bar chart, if two bars are plotted at the same position, you probably will see the taller of the two bars. So when you create the database query, you can use an aggregate query (in SQL this is done using a "GROUP BY" clause in the query) to aggregate two values into one by taking the maximum value. This reduces your data to 720 values, which better suit the resolution of the chart.
Hope this can help.
Regards
Peter Kwan |