Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion classes/DataWarehouse/Access/DataExplorer.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public function get_ak_plot($user)
$chart->setTitle($show_title?($title):NULL, $font_size);
$chart->setLegend($legend_location, $font_size);//called before and after
$show_closest_hover_label = count($datasets) > 1;
$chart->configure($datasets,
$chart->configureAppKernelChart($datasets,
$font_size,
$limit,
$offset,
Expand Down
2 changes: 1 addition & 1 deletion classes/DataWarehouse/Visualization/AppKernelChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function __construct(
$this->_indicator_url = '/gui/images/exclamation_ak.png';
}

public function configure(
public function configureAppKernelChart(
&$datasets,
$font_size = 0,
$limit = null,
Expand Down
4 changes: 2 additions & 2 deletions classes/Rest/Controllers/AppKernelControllerProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ public function getPlots(Request $request, Application $app)
$chart->setLegend($legend_location, $font_size);

$datasets = array();
$chart->configure(
$chart->configureAppKernelChart(
$datasets,
$font_size,
$limit,
Expand Down Expand Up @@ -579,7 +579,7 @@ public function getPlots(Request $request, Application $app)

if ($format != 'params') {
$datasets = array($result);
$chart->configure(
$chart->configureAppKernelChart(
$datasets,
$font_size,
$limit,
Expand Down