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

SetItemsSource() private method

private SetItemsSource ( ) : void
return void
        private void SetItemsSource()
        {
            if (!string.IsNullOrEmpty(Fields))
            {
                var binding = new Binding
                {
                    Path = new PropertyPath(""),
                    Converter = new ChartConverter { KeyToLabelDictionary = KeyToLabelDictionary },
                    ConverterParameter = Fields
                };
                SetBinding(ItemsSourceProperty, binding);
            }
        }