Are you plotting charts based on queries per second?
In Presets - Tables chart y-axis values are 0.1, 0.2, 0.3 , 0.4, 0.5 etc. Descriptions says "Heaviest tables and how many queries are running against them." Same applies for Schemas also.
table and schema statistics are based on SHOW OPEN TABLES. The measure is, on average, how many table handles are in use per table. Every time a table is used in a query, it counts as 1 for the duration of the query. So it is not strictly based on the queries, but rather on the underlying table handle information obtained from MySQL.
From your reply, "The measure is, on average, how many table handles are in use per table."
Can you please explain this in more detail? Suppose 1 query is executing for 10 seconds. There is only one open handle for the duration of query(10 sec). So how do you plot this value in the chart? Can you please explain this in numbers.