Value Format

Hi,

i'm tring to format the serie value like money format but without money symbol, the result

to achieve is



1,234,567.89



like FormatSetting('#,###,##0.#0,Float)



Sorry for this easy question ....



Thank's



Daniele

Hi, 


The ValueFormat property is available on series level:

  AdvChartView1.Panes[0].Series[0].ValueFormat :=  '#,###,##0.#0';
  AdvChartView1.Panes[0].Series[0].ValueFormatType := vftFloat;

Kind Regards, 
Pieter

hi Pieter,



> AdvChartView1.Panes[0].Series[0].ValueFormat := '#,###,##0.#0';

> AdvChartView1.Panes[0].Series[0].ValueFormatType := vftFloat;



It was too easy ....



Sorry for that question.



Thank's for all



Regard



Daniele