[Bug #948] Improved graphs colour coherence
Now always overload is represented with red scale based colours and load with green tones. In project view perspective the general load/overload is translucid just to give the additional information. FEA: ItEr73S04BugFixing
This commit is contained in:
parent
83efb2b4f9
commit
eca2f06b87
2 changed files with 7 additions and 8 deletions
|
|
@ -124,9 +124,9 @@ import org.zkoss.zul.Vbox;
|
|||
@Scope(BeanDefinition.SCOPE_SINGLETON)
|
||||
public abstract class CompanyPlanningModel implements ICompanyPlanningModel {
|
||||
|
||||
public static final String COLOR_ASSIGNED_LOAD_GLOBAL = "#98D471"; // green
|
||||
public static final String COLOR_CAPABILITY_LINE = "#000000"; // black
|
||||
public static final String COLOR_OVERLOAD_GLOBAL = "#FDBE13";
|
||||
public static final String COLOR_CAPABILITY_LINE = "#000000"; // Black
|
||||
public static final String COLOR_ASSIGNED_LOAD_GLOBAL = "#98D471"; // Green
|
||||
public static final String COLOR_OVERLOAD_GLOBAL = "#FF5A11"; // Red
|
||||
|
||||
@Autowired
|
||||
private IOrderDAO orderDAO;
|
||||
|
|
|
|||
|
|
@ -162,11 +162,10 @@ import org.zkoss.zul.Vbox;
|
|||
public abstract class OrderPlanningModel implements IOrderPlanningModel {
|
||||
|
||||
public static final String COLOR_CAPABILITY_LINE = "#000000"; // Black
|
||||
|
||||
public static final String COLOR_ASSIGNED_LOAD_GLOBAL = "#98D471"; // Green
|
||||
public static final String COLOR_OVERLOAD_GLOBAL = "#FDBE13"; // Orange
|
||||
|
||||
public static final String COLOR_ASSIGNED_LOAD_SPECIFIC = "#AA80d5"; // Violet
|
||||
public static final String COLOR_ASSIGNED_LOAD_GLOBAL = "#E0F3D3"; // Soft
|
||||
// green
|
||||
public static final String COLOR_OVERLOAD_GLOBAL = "#FFD4C2"; // Soft red
|
||||
public static final String COLOR_ASSIGNED_LOAD_SPECIFIC = "#98D471"; // Green
|
||||
public static final String COLOR_OVERLOAD_SPECIFIC = "#FF5A11"; // Red
|
||||
|
||||
private static final Log LOG = LogFactory.getLog(OrderPlanningModel.class);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue