Month

A Month sparkline is useful for spotting data trends within a month.

Description
app.vue
index.html
Copy to CodeMine

You can create a Month sparkline using the MonthSparkline function in a formula: =MONTHSPARKLINE(year, month, dataRange, emptyColor, startColor, middleColor, endColor)*. OR *=MONTHSPARKLINE(year, month, dataRange, colorRange).

The function has the following parameters:

  • year : The full year number, such as 2015.

  • month : The month number, such as 3.

  • dataRange : The reference represents a range where the first column is date and the second column is number, such as 'A1:B400'.

  • emptyColor : The color string represents days that have no value or zero value, such as 'lightgray'.

  • startColor : The color string represents the day where the value is the minimum value, such as 'lightgreen'.

  • middleColor : The color string represents the day where the value is the average of minimum and maximum, such as 'green'.

  • endColor : The color string represents the day where the value is the maximum value, such as 'darkgreen'.

  • colorRange : The reference represents a range where the data is a color string.

You can create a Month sparkline using the MonthSparkline function in a formula: =MONTHSPARKLINE(year, month, dataRange, emptyColor, startColor, middleColor, endColor)*. OR *=MONTHSPARKLINE(year, month, dataRange, colorRange). The function has the following parameters: year : The full year number, such as 2015. month : The month number, such as 3. dataRange : The reference represents a range where the first column is date and the second column is number, such as 'A1:B400'. emptyColor : The color string represents days that have no value or zero value, such as 'lightgray'. startColor : The color string represents the day where the value is the minimum value, such as 'lightgreen'. middleColor : The color string represents the day where the value is the average of minimum and maximum, such as 'green'. endColor : The color string represents the day where the value is the maximum value, such as 'darkgreen'. colorRange : The reference represents a range where the data is a color string.
<template> <div class="sample-tutorial"> <gc-spread-sheets class="sample-spreadsheets" @workbookInitialized="initSpread"> <gc-worksheet> </gc-worksheet> <gc-worksheet> </gc-worksheet> </gc-spread-sheets> </div> </template> <script setup> import { ref } from "vue"; import GC from "@mescius/spread-sheets"; import '@mescius/spread-sheets-vue' let initColorRangeSheet = function (spread) { let sheet = spread.sheets[1]; sheet.name("ColorRange"); sheet.suspendPaint(); sheet.setColumnWidth(0, 80); sheet.setColumnWidth(1, 70); sheet.setColumnWidth(2, 70); sheet.setColumnWidth(3, 30); sheet.setColumnWidth(4, 80); sheet.setColumnWidth(5, 70); sheet.setColumnWidth(6, 70); sheet.setColumnWidth(7, 30); sheet.setColumnWidth(8, 90); sheet.getRange(0, 0, 1, 9).backColor("#999999").foreColor("#FFFFFF"); sheet.setFormatter(-1, 0, "yyyy-MM-dd"); sheet.setFormatter(-1, 4, "yyyy-MM-dd"); sheet.addSpan(2, 8, 5, 1); sheet.addSpan(9, 8, 5, 1); var currentYear = new Date().getFullYear(); for (let row = 1; row < 29; row++) { sheet.setValue(row, 0, new Date(currentYear, 0, row)); sheet.setValue(row, 1, Math.round(Math.random() * 100)); sheet.setValue(row, 2, getRandomColor()); } for (let row = 1; row < 29; row++) { sheet.setValue(row, 4, new Date(currentYear, 1, row)); sheet.setValue(row, 5, Math.round(Math.random() * 100)); sheet.setValue(row, 6, getRandomColor()); } sheet.setText(0, 0, "January"); sheet.setText(0, 1, "Value"); sheet.setText(0, 2, "Color"); sheet.setText(0, 4, "February"); sheet.setText(0, 5, "Value"); sheet.setText(0, 6, "Color"); sheet.setText(0, 8, "Diagram"); sheet.setFormula(2, 8, '=MONTHSPARKLINE(' + currentYear + ',1,A2:B31,C2:C32)'); sheet.setFormula(7, 8, '=TEXT(DATE(' + currentYear + ',1, 1),"mmmm")'); sheet.setFormula(9, 8, '=MONTHSPARKLINE(' + currentYear + ',2,E2:F29,G2:G29)'); sheet.setFormula(14, 8, '=TEXT(DATE(' + currentYear + ',2, 1),"mmmm")'); sheet.resumePaint(); } let getRandomColor = function () { let colorList = ["#82bc00", "#9fc94c", "#00C2D6", "#d2e4a7", "#e9f2d2", "#ffedd3", "#ffdba8", "#ffc97d", "#feb850", "#f7a711", "#00c2d6"]; return colorList[Math.round(Math.random() * 10)]; } let initSpread = function (spread) { let sheet = spread.sheets[0]; sheet.name("No ColorRange"); sheet.suspendPaint(); sheet.setColumnWidth(0, 80); sheet.setColumnWidth(1, 60); sheet.setColumnWidth(2, 30); sheet.setColumnWidth(3, 80); sheet.setColumnWidth(4, 60); sheet.setColumnWidth(5, 30); sheet.setColumnWidth(6, 90); sheet.getRange(0, 0, 1, 7).backColor("#999999").foreColor("#FFFFFF"); sheet.setFormatter(-1, 0, "yyyy-MM-dd"); sheet.setFormatter(-1, 3, "yyyy-MM-dd"); sheet.addSpan(2, 6, 5, 1); sheet.addSpan(9, 6, 5, 1); var currentYear = new Date().getFullYear(); for (let row = 1; row <= 31; row++) { sheet.setValue(row, 0, new Date(currentYear, 0, row)); sheet.setValue(row, 1, Math.round(Math.random() * 100)); } for (let row = 1; row <= 28; row++) { sheet.setValue(row, 3, new Date(currentYear, 1, row)); sheet.setValue(row, 4, Math.round(Math.random() * 100)); } sheet.setText(0, 0, "January"); sheet.setText(0, 1, "Value"); sheet.setText(0, 3, "February"); sheet.setText(0, 4, "Value"); sheet.setText(0, 6, "Diagram"); sheet.setFormula(2, 6, '=MONTHSPARKLINE(' + currentYear + ', 1, A2:B32, "#6d6d6d", "#c4c4c4", "#979797", "#f3f3f3")'); sheet.setFormula(7, 6, '=TEXT(DATE(' + currentYear + ',1, 1),"mmmm")'); sheet.setFormula(9, 6, '=MONTHSPARKLINE(' + currentYear + ',2,D2:E29, "#6d6d6d", "#c4c4c4", "#979797", "#f3f3f3")'); sheet.setFormula(14, 6, '=TEXT(DATE(' + currentYear + ',2, 1),"mmmm")'); sheet.resumePaint(); initColorRangeSheet(spread); } </script> <style scoped> #app { height: 100%; } .sample-tutorial { position: relative; height: 100%; overflow: hidden; } .sample-spreadsheets { width: 100%; height: 100%; overflow: hidden; float: left; } 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);