if (widget != null && colorMarkerList != null && colorMarkerList.length != 0) {
final CometeColor[] cometeColorList = new CometeColor[colorMarkerList.length];
for (int i = 0; i < colorMarkerList.length; i++) {
cometeColorList[i] = new CometeColor(colorMarkerList[i].getRed(), colorMarkerList[i].getGreen(),
colorMarkerList[i].getBlue());
}
((IChartViewer) widget).setCustomMarkerCometeColor(cometeColorList);
}