Skip to content

Commit

Permalink
Make codechecker happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaboesch committed Jul 13, 2024
1 parent 567d996 commit 43ca785
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions classes/utils/graph_utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,34 +43,34 @@ class graph_utils {
*/
public static function create_radar_graph(report $report): string {
$settings = [
'back_colour' => '#eee',
'back_stroke_width' => 0,
'back_stroke_colour' => '#eee',
'stroke_colour' => '#000',
'axis_colour' => '#333',
'axis_overlap' => 0,
'grid_colour' => '#666',
'label_colour' => '#000',
'axis_font' => 'Arial',
'axis_font_size' => 13,
'pad_right' => 20,
'pad_left' => 20,
'pad_bottom' => 20,
'pad_top' => 20,
'marker_type' => 'circle',
'marker_size' => 3,
'marker_colour' => 'blue',
'link_base' => '/',
'link_target' => '_top',
'show_labels' => true,
'label_space' => 50,
'label_font' => 'Arial',
'label_font_size' => '14',
'minimum_grid_spacing' => 20,
'show_subdivisions' => true,
'show_grid_subdivisions' => true,
'grid_subdivision_colour' => '#ccc',
'axis_max_v' => 5,
'back_colour' => '#eee',
'back_stroke_width' => 0,
'back_stroke_colour' => '#eee',
'stroke_colour' => '#000',
'axis_colour' => '#333',
'axis_overlap' => 0,
'grid_colour' => '#666',
'label_colour' => '#000',
'axis_font' => 'Arial',
'axis_font_size' => 13,
'pad_right' => 20,
'pad_left' => 20,
'pad_bottom' => 20,
'pad_top' => 20,
'marker_type' => 'circle',
'marker_size' => 3,
'marker_colour' => 'blue',
'link_base' => '/',
'link_target' => '_top',
'show_labels' => true,
'label_space' => 50,
'label_font' => 'Arial',
'label_font_size' => '14',
'minimum_grid_spacing' => 20,
'show_subdivisions' => true,
'show_grid_subdivisions' => true,
'grid_subdivision_colour' => '#ccc',
'axis_max_v' => 5,
];

$width = 330;
Expand Down

0 comments on commit 43ca785

Please sign in to comment.