Featured Chart: Bar Chart with Gradient Fill

Gradient fills add a unique visual aspect to your bar charts, giving a lighter look to the chart. Any of our products can make this chart.

CDL:

# Gradient Bar Chart
ChartType = BARCHART;
ChartName = "gradient-chart";
ChartSize = (500,300);
Background = (white,NONE,1,"null",TILE,black);
AntiAlias = ON;
Legend = ("OFF",black,"Arial Plain",10,0);
LegendItems = ;
Header = ("Temperature Variations, January 2003",black,"Arial",12,0);
RightTitle = (" ",black,"SansSerif",12,0);
RightTitleBox = (null,NONE,2,"null",TILE,black);
DwellLabel = (ON,black,"SansSerif",10,0);
DwellLabelBox = (white,BOX,1,"null",TILE,black);
BackgroundFillPattern = (NONE,null,null);
# Grid uses a background image
Grid = (lightgray,null,black,"winter-landscape.jpg",SIZE);
GridLine = (BOTH,SOLID,1);
GridAxis = (BOTTOM,LEFT);
LeftScale1 = (10, 50, 5);
LeftTics1 = (ON,,"Arial Plain",10,0);
LeftTicLayout1 = (AUTO,0,2);
LeftAxesLayout = 0;
LeftAxisTitle1 = ("Degrees F\n ",black,"Arial",10,90);
BottomTics1 = (ON,black,"Arial Plain",10,0);
BottomTicLayout1 = (AUTO,0,2);
Grid3DDepth = -1;
BarLabels = "5 Jan","6 Jan","7 Jan","8 Jan","9 Jan","10 Jan","11 Jan";
DataSets = ("BarSet1",null,BAR);
BarValueLabelStyle = NONE;
BarBorder = (NONE,1,black);
Bar3DDepth = 0;
BarWidth = 61;
GraphLayout = VERTICAL;
GraphType = STACK;
# Vertical gradient bar fill pattern
BarFillPattern = (NONE),(GRADIENTVERTICAL,blue,red);
# Data set 1 not shown because we want it to only
# mark the LOW for the day. Note the use of translucency.
# Data set 2 is the difference between the high
# and the low value.
DataSets = (notshown,white_0,BAR),(Highs, red, BAR);
DataSet2 = 17,16,9,13,13,12,17;
DataSet1 = 28,22,27,20,18,32,30;
StackLabel = TOTAL;