ArcGISPortalViewer.Popup.Primitives.Charting.BaseChart.FormattedValue C# (CSharp) Method

FormattedValue() protected method

Returns a double value formatted to be displayed in axis or tooltip.
protected FormattedValue ( double value ) : string
value double
return string
        protected string FormattedValue(double value)
        {
            // Use group separator
            return value.ToString("#,0.##########");
        }