Changing the BarStyle(Chart) at Run Time
Hi Everyone! I would like to know, how can i change my barstyle of my hcart at run time in fast report. I try many ways, but i didn??t obtain!!! I try, something like this: "chart1.chart.sereis1.barstyle := bsarrow;", but . So, someone can help me?! debtor since already... Raphael
Comments
but here is a hint the series is an indexed list so first series is series[0]
what you may have to do is create more than 1 series using the same datapoints
and set the active property of the series to true or false.
begin
if <condition> then
begin
chart1.series[0].active := false;
chart1.series[1].active := true;
end
else
begin
chart1.series[0].active := true;
chart1.series[1].active := false;
end;
end;
Regards... Raphael