Hi andrea,
It seems that such option for Origin C is not exposed yet. For now, you can use the LT_execute to call some LabTalk to do that. For example:
void testTicks() {
GraphLayer gl = Project.ActiveLayer(); // the active graph layer
string strLTCmd;
strLTCmd = "layer.x.label.Type = 2;"; // set tick labels from dataset
strLTCmd += "layer.x.label.dataset$ = Book1_C;"; // set column C in Book1 as tick labels
gl.LT_execute(strLTCmd); // execute LabTalk script
}
You can get more information here about layer.axis.label object.
Penn