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.
<template>
<div class="sample-tutorial">
<gc-spread-sheets class="sample-spreadsheets" @workbookInitialized="initSpread">
<gc-worksheet>
</gc-worksheet>
</gc-spread-sheets>
<div class="options-container">
<div class="option-group">
<label for="color1">Rainfall - Particulate Level Graph Color</label>
</div>
<div class="option-group">
<select v-model="color1" v-on:change="applyChanges">
<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-group">
<label for="color2">Rainfall - Temperature Graph Color</label>
</div>
<div class="option-group">
<select v-model="color2" v-on:change="applyChanges">
<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>
</template>
<script setup>
import { ref } from "vue";
import GC from "@mescius/spread-sheets";
import '@mescius/spread-sheets-vue'
const spreadRef = ref(null);
let color1 = "#BBBBBB";
let color2 = "#82BC00";
let initSpread = function (spread) {
spreadRef.value = spread;
let spreadNS = GC.Spread.Sheets;
let 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();
}
let applyChanges = function () {
var spread = spreadRef.value;
let sheet = spread.getActiveSheet();
sheet.setFormula(2, 4, '=SCATTERSPARKLINE(A3:B11,C3:D11,,,,,AVERAGE(B3:B11),AVERAGE(A3:A11),,,,,'
+ 'TRUE,TRUE,TRUE,"' +
color1 + '","' +
color2 + '",TRUE)');
}
</script>
<style scoped>
#app {
height: 100%;
}
.sample {
position: relative;
height: 100%;
overflow: auto;
}
.sample::after {
display: block;
content: "";
clear: both;
}
.sample-tutorial {
position: relative;
height: 100%;
overflow: hidden;
}
p {
padding: 2px 10px;
background-color: #F4F8EB;
}
.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;
}
.option-row {
font-size: 14px;
padding: 5px;
margin-top: 10px;
}
.option-group {
margin-bottom: 8px;
}
input,
select {
margin-top: 6px;
width: 100%;
box-sizing: border-box;
}
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
</style>
<!DOCTYPE html>
<html style="height:100%;font-size:14px;">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>SpreadJS VUE</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css"
href="$DEMOROOT$/en/vue3/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css">
<script src="$DEMOROOT$/en/vue3/node_modules/systemjs/dist/system.src.js"></script>
<script src="./systemjs.config.js"></script>
<script src="./compiler.js" type="module"></script>
<script>
var System = SystemJS;
System.import("./src/app.js");
System.import('$DEMOROOT$/en/lib/vue3/license.js');
</script>
</head>
<body>
<div id="app"></div>
</body>
</html>
(function (global) {
SystemJS.config({
transpiler: 'plugin-babel',
babelOptions: {
es2015: true
},
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
packageConfigPaths: [
'./node_modules/*/package.json',
"./node_modules/@mescius/*/package.json",
"./node_modules/@babel/*/package.json",
"./node_modules/@vue/*/package.json"
],
map: {
'vue': "npm:vue/dist/vue.esm-browser.js",
'tiny-emitter': 'npm:tiny-emitter/index.js',
'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js',
"systemjs-babel-build": "npm:systemjs-plugin-babel/systemjs-babel-browser.js",
'@mescius/spread-sheets': 'npm:@mescius/spread-sheets/index.js',
'@mescius/spread-sheets-vue': 'npm:@mescius/spread-sheets-vue/index.js'
},
meta: {
'*.css': { loader: 'systemjs-plugin-css' },
'*.vue': { loader: "../plugin-vue/index.js" }
}
});
})(this);