Question: BarChart vs. ColumnGraph

with(Statistics):

X := ["A"=2,"B"=3,"C"=5,"D"=6];

BarChart(X);

 

This works just fine, but if I try to execute

 

ColumnGraph(X);

 

I get plotting error, non-numeric vertex definition.  These two functions are in the same help file, so why aren't they accepting the same syntax?

Please Wait...