chartViewer.setDataViewCometeColor(attributeKey.getInformationKey(), CometeColor.RED);
}
boolean isSettable = !TangoAttributeHelper.isAttributeReadOnly(model, attributeName);
if (isSettable) {
IKey writeAttributeKey = generateWriteAttributeKey(attributeName);
// System.out.println("Id read =" +
// writeAttributeKey.getInformationKey());
chartBox.connectWidget(chartViewer, writeAttributeKey);
// setWidgetModel(chartViewer, chartBox, writeAttributeKey);
properties = plotPropertiesMap.get(writeAttributeKey.getInformationKey().toLowerCase());
if (properties != null) {
if (properties.getAxisChoice() == -1) {
properties.setAxisChoice(IChartViewer.Y1);
}
chartViewer.setDataViewPlotProperties(writeAttributeKey.getInformationKey(), properties);
} else {
chartViewer.setDataViewCometeColor(writeAttributeKey.getInformationKey(), CometeColor.BLUE);
}
}
if (chartProperties != null) {
chartViewer.setChartProperties(chartProperties);