#10696 delete switches from graphs in netflow widget
This commit is contained in:
parent
e737cb4f01
commit
fb297c8891
|
@ -298,6 +298,7 @@ class Netflow extends Widget
|
|||
*/
|
||||
public function load()
|
||||
{
|
||||
ui_require_css_file('netflow_widget', 'include/styles/', true);
|
||||
global $config;
|
||||
|
||||
$output = '';
|
||||
|
@ -333,7 +334,7 @@ class Netflow extends Widget
|
|||
$config['style'],
|
||||
true
|
||||
);
|
||||
$style = 'height: 100%; border: none;';
|
||||
$style = 'width:100%; height: 100%; border: none;';
|
||||
if ($this->values['chart_type'] !== 'netflow_area') {
|
||||
$style .= ' width: 95%;';
|
||||
}
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
.menu_graph {
|
||||
display: none;
|
||||
}
|
||||
.parent_graph {
|
||||
width: 97% !important;
|
||||
}
|
||||
#image_hide_show_labels {
|
||||
display: none !important;
|
||||
}
|
Loading…
Reference in New Issue