*Category()
Sets the name of a bar column (a.k.a. category) along the Categories axis. Subsequent *Category() statements define the other category names.
Syntax
*Category (name)
Application
HyperGraph
Inputs
- name
- The name of the category.
Context
*BeginPage()
*BeginPlot()
*BeginPlotFooter()
*BeginWindow()
Example
To set the category names "one", "two", "three", "four",and "five":
*BeginPlot()
	• • •
    *BeginAxis()
       *Label("X Axis"
       *Scale(Linear)
       *TicMethod(Increment)
       *Min(0)
       *Max(5)
       *Format(Auto)
       *Precision(3)
       *Increment(1)
       *Grids(1)
       *Color(67)
       *AutoFit(TRUE)
       *LabelFont("Arial", 0, 0, 10)
       *TicsFont("Arial", 0, 0, 8)
       *Category("One")
       *Category("Two")
       *Category("Three")
       *Category("Four")
       *Category("Five")
       *HorizontalLabeling(FALSE)
    *EndAxis()
	• • •
*EndPlot()Comments
This statement is valid only for bar charts.