Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I set the decimal point and remove the thousand seperator?

0
Posted

How do I set the decimal point and remove the thousand seperator?

0

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.

0

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.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123