12.03.2019, 07:53 
		
	
	
		Trends are not optimized for smaller sizes. There are several things you can do via Custom CSS.
1. Hide legend completely:
2. Make is partially transparent:
3: Remove border and background:
	
	
	
	
1. Hide legend completely:
Code:
.flotr-legend {
  display: none;
}2. Make is partially transparent:
Code:
.flotr-legend {
  opacity: 0.5;
}3: Remove border and background:
Code:
.flotr-legend {
  border: none;
  background: none;
}
