How do I set the decimal point and remove the thousand seperator?
Create a NumericFormat object and set its properties. And then get a handle to IDataPointSet and use setLabelFormat to set the properties for the column. For example, if the format for Column 2 has to be changed to remove the thousand seperator and to have no decimal, then use the following code: NumericFormat format = new NumericFormat(); format.decimal = 0; format.thousandSep = ‘N’; IDataPointSet dataPoints = chart.gethDataPoints(); // where chart is the QbChart object dataPoints.