The bins comment is totally accurate, in that you can use this to raise the maximum number of bins, and thus raise the granularity:
| timechart bins=1500 count
but i think as you've discovered, there's another limit even after you've fixed that, of 250 rows, and that the flash only seems to graph from the first 250 rows even when there are more.
What you're hitting is a 250 row limit on the FlashChart module in the UI itself.
If you're authoring in the advanced XML (which you probably are not), the the FlashChart module takes a param called maxResultCount, which is optional and defaults to 250.
If on the other hand you're authoring in the simplified XML, you can effect the same thing with a charting key:
<option name="charting.data.count">1000</option>
add one of those to your <chart> like so
<chart>
<searchString>foo | timechart bins=1000 count by sourcetype</searchString>
<earliestTime>-6h</earliestTime>
<latestTime>-0s</latestTime>
<option name="charting.chart">line</option>
<option name="charting.data.count">1000</option>
</chart>
And to show the code in the land of the Advanced XML, you would add this param:
<param name="maxResultCount">1000</param>
to your FlashChart module. Hopefully that will get you going.
... View more