Jump to content
Software FX Community

Color for Single Value in a Single Series


User (Legacy)

Recommended Posts

I am having trouble overriding the default color setting of black with a 

new color for a single value in one series (one bar displayed in bar

chart).

Here is the code I am using....

nSeries = 1

nPoints = 1

chart(chart_num).OpenDataEx COD_VALUES,nSeries,nPoints

chart(chart_num).ThisSerie = 0

chart(chart_num).SerLeg(0) = current_metric_name

chart(chart_num).keyLeg(0) = current_metric_name

childValue = getvalue(current_metric, current_date)

chart(chart_num).value(0) = childValue

chart(chart_num).CloseData COD_VALUES

chart(chart_num).ChartType = 2

chart(chart_num).Type = chart(chart_num).Type Or 65536

chart(chart_num).ADM(1) = childValue*1.5

chart(chart_num).OpenDataEx COD_COLORS,nSeries*nPoints,0

for i = 0 to nSeries-1

chart(chart_num).ThisSerie = i

for j = 0 to nPoints-1

chart(chart_num).Color(j*nSeries + i) =

getcolor(current_metric, current_color)

Next

Next

chart(chart_num).CloseData COD_COLORS

Thanks for any help.

Tom

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...