10 writes to _currentChartImageLocation
System.Web.DataVisualization (10)
WebForm\ChartWebControl.cs (10)
425
this.
_currentChartImageLocation
= this.ImageLocation;
443
_currentChartImageLocation
+= ".bmp";
446
_currentChartImageLocation
+= ".jpeg";
449
_currentChartImageLocation
+= ".png";
452
_currentChartImageLocation
+= ".emf";
470
_currentChartImageLocation
= _currentChartImageLocation.Replace("#UID", Guid.NewGuid().ToString());
477
_currentChartImageLocation
= GetNewSeqImageUrl(_currentChartImageLocation);
487
_currentChartImageLocation
= _currentChartImageLocation.Replace("#NOGUIDPARAM", "");
494
_currentChartImageLocation
= this.Page.ResolveUrl(_currentChartImageLocation);
738
this.
_currentChartImageLocation
= String.Empty;
13 references to _currentChartImageLocation
System.Web.DataVisualization (13)
WebForm\ChartWebControl.cs (13)
419
if (this.
_currentChartImageLocation
.Length > 0)
421
return this.
_currentChartImageLocation
;
436
int pointIndex =
_currentChartImageLocation
.LastIndexOf('.');
437
int slashIndex =
_currentChartImageLocation
.LastIndexOfAny(slashesArray);
459
indexUID =
_currentChartImageLocation
.IndexOf("#UID", StringComparison.Ordinal);
460
int indexSEQ =
_currentChartImageLocation
.IndexOf("#SEQ", StringComparison.Ordinal);
470
_currentChartImageLocation =
_currentChartImageLocation
.Replace("#UID", Guid.NewGuid().ToString());
477
_currentChartImageLocation = GetNewSeqImageUrl(
_currentChartImageLocation
);
484
int indexNoGuidParam =
_currentChartImageLocation
.IndexOf("#NOGUIDPARAM", StringComparison.Ordinal);
487
_currentChartImageLocation =
_currentChartImageLocation
.Replace("#NOGUIDPARAM", "");
491
if (
_currentChartImageLocation
.StartsWith("~", StringComparison.Ordinal) && HttpContext.Current != null && this.Page.Request != null)
494
_currentChartImageLocation = this.Page.ResolveUrl(
_currentChartImageLocation
);
497
return
_currentChartImageLocation
;