Conditional Color for Marker in Line Chart
Hi Folks!
I'm looking for a way to have conditional color for each marker in my chart.
So far I have managed to put conditional color for ALL markers at once, but not individually.
As of now this is how it looks:
The condition Is:
<MarkerText visible="true" markerTextPlace="MTP_CUSTOM" markerTextRadiusDefault="50"></MarkerText>
<SeriesItems>
<xsl:if test="number(CUMPLIMIENTOX100)>=number(GREEN_CRITERIA)">
<Series id="0" lineWidth="2" markerShape="MS_CIRCLE" markerColor="#159B12"/>
</xsl:if>
<xsl:if test="number(CUMPLIMIENTOX100)<number(GREEN_CRITERIA) and number(CUMPLIMIENTOX100)>number(RED_CRITERIA)">
<Series id="0" lineWidth="2" markerShape="MS_CIRCLE" markerColor="#F4A805"/>
</xsl:if>