14 references to _fontCache
System.Web.DataVisualization (14)
Common\General\Chart.cs (14)
4180if (!this._fontCache.ContainsKey(key))
4182this._fontCache.Add(key, new Font(familyName, size));
4184return this._fontCache[key];
4197if (!this._fontCache.ContainsKey(key))
4199this._fontCache.Add(key, new Font(familyName, size, style));
4201return this._fontCache[key];
4214if (!this._fontCache.ContainsKey(key))
4216this._fontCache.Add(key, new Font(family, size, style));
4218return this._fontCache[key];
4232if (!this._fontCache.ContainsKey(key))
4234this._fontCache.Add(key, new Font(family, size, style, unit));
4236return this._fontCache[key];
4248foreach (Font font in _fontCache.Values)
4252_fontCache.Clear();