When selecting to exclude top x Samples the table would remove sample, but add new table at bottom to keep the number of max flows. The graph would not match the table one for one. If the exclude was set to "Top Sample" the graph would start and the second entry on the table which was actually the third table entry.
Fixed the issue: Edited the functions.php file with the changes below and it seems to work fine.
added $cut++ to
/* remove outliers */
if ($r < $j) {
$r++;
continue;
}
New code:
/* remove outliers */
if ($r < $j) {
$r++;
$cut++;
continue;
}
commented lines 1719 to 1722 on functons.php
# if (isset($_REQUEST['exclude']) && $_REQUEST['exclude'] > 0) {
# for($i = 0; $i < $_REQUEST['exclude']; $i++) {
# array_shift($data);
# }
[Fixed] Flowview Bars and table not maching
Moderators: Developers, Moderators
-
- Posts: 3
- Joined: Fri Jul 19, 2013 11:26 am
Who is online
Users browsing this forum: No registered users and 2 guests