You can create a Scatter sparkline using the ScatterSparkline function in a formula: =SCATTERSPARKLINE(points1, points2?, minX?, maxX?, minY?, maxY?, hLine?, vLine?, xMinZone?, xMaxZone?, yMinZone?, yMaxZone?, tags?, drawSymbol?, drawLines?, color1?, color2?, dash?).
The function has the following parameters:
points1: The first series of x,y data. It is a range, such as "H1:I3". If the row count is greater than or equal to the column count, get data from the first two columns; the first column contains x values, and the second column contains y values. Otherwise, get data from the first two rows; the first row contains x values, and the second row contains y values.
points2: (optional) The second series of x,y data. It is a range, such as "H4:I6". If the row count is greater than or equal to the column count, get data from the first two columns; the first column contains x values, and the second column contains y values. Otherwise, get data from the first two rows; the first row contains x values, and the second row contains y values.
minX: (optional) x minimum limit of both series; each series has its own value if it is omitted.
maxX: (optional) x maximum limit of both series; each series has its own value if it is omitted.
minY: (optional) y minimum limit of both series; each series has its own value if it is omitted.
maxY: (optional) y maximum limit of both series; each series has its own value if it is omitted.
hLine: (optional) The position of the horizontal axis; there is no line if it is omitted.
vLine: (optional) The position of the vertical axis; there is no line if it is omitted.
xMinZone: (optional) x minimum value of the gray zone; there is no gray zone if any of these four zone params are omitted.
xMaxZone: (optional) x maximum value of the gray zone; there is no gray zone if any of these four zone params are omitted.
yMinZone: (optional) y minimum value of the gray zone; there is no gray zone if any of these four zone params are omitted.
yMaxZone: (optional) y maximum value of the gray zone; there is no gray zone if any of these four zone params are omitted.
tags: (optional) If it is true, mark the point where the y value is the maximum of the first series as "#0000FF", and mark the point where the y value is the minimum of the first series as "#CB0000". The default value is false.
drawSymbol: (optional) If it is true, draw each point as a symbol. The symbol of the first series is a circle, and the symbol of the second series is a square. The default value is true.
drawLines: (optional) If it is true, connect each point with a line by sequence in each series. The default value is false.
color1: (optional) Color string of the first series of points; the default value is "#969696".
color2: (optional) Color string of the second series of points; the default value is "#CB0000".
dash: (optional) If it is true, the line is a dashed line; otherwise, the line is a full line. The default value is false.
var spread;
window.onload = function () {
spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"));
initSpread(spread);
document.getElementById('color1').addEventListener('change',applyChanges);
document.getElementById('color2').addEventListener('change',applyChanges);
};
function applyChanges() {
var sheet = spread.getActiveSheet();
sheet.setFormula(2, 4, '=SCATTERSPARKLINE(A3:B11,C3:D11,,,,,AVERAGE(B3:B11),AVERAGE(A3:A11),,,,,'
+'TRUE,TRUE,TRUE,"'+
document.getElementById('color1').value + '","' +
document.getElementById('color2').value + '",TRUE)');
}
function initSpread(spread) {
var spreadNS = GC.Spread.Sheets;
var sheet = spread.sheets[0];
sheet.suspendPaint();
sheet.addSpan(0, 0, 1, 5);
sheet.getCell(0, 0).value("Rainfall effect on Particulate Levels and Temperature").font("15px Arial")
.backColor("#BBBBBB")
.vAlign(spreadNS.VerticalAlign.center);
sheet.setArray(1, 0, [
["Daily Rainfall", "Particulate Level", "Daily Rainfall1", "Temperature", "Diagram"],
[2.0, 100, 2.0, 15],
[2.5, 130, 2.5, 12],
[3.0, 120, 3.0, 11],
[3.5, 140, 3.5, 9],
[4.0, 120, 4.0, 10],
[4.5, 110, 4.5, 10],
[5.0, 110, 5.0, 9],
[5.5, 105, 5.5, 9],
[6.0, 100, 6.0, 8]
]);
sheet.addSpan(2, 4, 9, 1);
sheet.setFormula(2, 4, '=SCATTERSPARKLINE(A3:B11,C3:D11,,,,,AVERAGE(B3:B11),AVERAGE(A3:A11),,,,,'
+'TRUE,TRUE,TRUE,"#000000","#82BC00",TRUE)');
for (var i = 0; i < 11; i++) {
sheet.setRowHeight(i, 25);
}
sheet.getRange(1, 0, 1, 5)
.font("bold 13px Arial")
.setBorder(new spreadNS.LineBorder("black", spreadNS.LineStyle.thin), { bottom: true });
sheet.getRange(2,0,9,4).hAlign(spreadNS.HorizontalAlign.left);
sheet.setColumnWidth(0, 120);
sheet.setColumnWidth(1, 120);
sheet.setColumnWidth(3, 120);
sheet.setColumnWidth(4, 200);
//hide 2nd rainfall column data
sheet.setColumnVisible(2, false);
sheet.resumePaint();
};
<!doctype html>
<html style="height:100%;font-size:14px;">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css">
<script src="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets/dist/gc.spread.sheets.all.min.js" type="text/javascript"></script>
<script src="$DEMOROOT$/spread/source/js/license.js" type="text/javascript"></script>
<script src="app.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="sample-tutorial">
<div id="ss" class="sample-spreadsheets"></div>
<div class="options-container">
<div class="option-row">
<label for="color1">Rainfall - Particulate Level Graph Color</label>
</div>
<div class="option-row">
<select id="color1">
<option value="#FFFFFF">White</option>
<option value="#000000" selected>Black</option>
<option value="#F7A711">Orange</option>
<option value="#DDDDDD">LightGrey</option>
<option value="#BBBBBB">Grey</option>
<option value="#999999">DarkGrey</option>
<option value="#82BC00">Green</option>
</select>
</div>
<div class="option-row">
<label for="color2">Rainfall - Temperature Graph Color</label>
</div>
<div class="option-row">
<select id="color2">
<option value="#FFFFFF">White</option>
<option value="#000000">Black</option>
<option value="#F7A711">Orange</option>
<option value="#DDDDDD">LightGrey</option>
<option value="#BBBBBB">Grey</option>
<option value="#999999">DarkGrey</option>
<option value="#82BC00" selected>Green</option>
</select>
</div>
</div>
</div>
</body>
</html>
.sample-tutorial {
position: relative;
height: 100%;
overflow: hidden;
}
.sample-spreadsheets {
width: calc(100% - 280px);
height: 100%;
overflow: hidden;
float: left;
}
.options-container {
float: right;
width: 280px;
padding: 12px;
height: 100%;
box-sizing: border-box;
background: #fbfbfb;
overflow: auto;
}
.option-row {
font-size: 14px;
padding: 5px;
margin-top: 10px;
}
label {
margin-bottom: 6px;
}
input {
padding: 4px 6px;
}
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}