Example #1
0
 /// <summary>
 /// Sets the flot lines points bars style.
 /// </summary>
 /// <param name="chartStyle">The chart style.</param>
 /// <param name="linesPointsBars">The lines points bars.</param>
 private void SetFlotLinesPointsBarsStyle(ChartStyle chartStyle, LinesPointsBars linesPointsBars)
 {
     if (linesPointsBars != null)
     {
         linesPointsBars.fill      = chartStyle.FillOpacity;
         linesPointsBars.fillColor = chartStyle.FillColor;
     }
 }
Example #2
0
 /// <summary>
 /// Sets the flot lines points bars style.
 /// </summary>
 /// <param name="chartStyle">The chart style.</param>
 /// <param name="linesPointsBars">The lines points bars.</param>
 private void SetFlotLinesPointsBarsStyle( ChartStyle chartStyle, LinesPointsBars linesPointsBars )
 {
     if ( linesPointsBars != null )
     {
         linesPointsBars.fill = chartStyle.FillOpacity;
         linesPointsBars.fillColor = chartStyle.FillColor;
     }
 }