This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Basic API call (JavaScript) | |
description: Executes a basic Excel API call using plain JavaScript & Promises | |
author: lumine2008 | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
$("#run").click(() => tryCatch(run)); | |
function run() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Basic API call | |
description: Executes a basic Excel API call | |
author: lumine2008 | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
$("#run").click(() => tryCatch(run)); | |
async function run() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: basic cellproperties set | |
description: '' | |
author: lumine2008 | |
host: EXCEL | |
api_set: {} | |
script: | |
content: |- | |
$("#prepCanvas").click(prepCanvas); | |
$("#painting").click(startPainting); | |
var canvas, canvasCtx; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AutoUpdate Data | |
description: Executes a basic Excel API call | |
author: lumine2008 | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
$("#run").click(() => tryCatch(run)); | |
function callMyself() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: IgniteDemo | |
description: '' | |
author: lumine2008 | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
$("#run").click(() => tryCatch(insertData)); | |
$("#pivot").click(() => tryCatch(createPivot)); | |
$("#refresh").click(() => tryCatch(refreshPivot)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: BitCoin Trend | |
description: '' | |
host: EXCEL | |
api_set: {} | |
script: | |
content: | | |
$("#setup").click(() => tryCatch(setup)); | |
$("#run").click(() => tryCatch(run)); | |
$("#stop").click(() => tryCatch(stop)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CFDemo1 | |
description: '' | |
author: lumine2008 | |
host: EXCEL | |
api_set: {} | |
script: | |
content: |- | |
/** @customfunction */ | |
function getSalesData( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TechSummit- Tetris | |
description: Tetris in Excel using Shape Rich APIs. | |
host: EXCEL | |
api_set: {} | |
script: | |
content: > | |
// Majority of following code comes from | |
https://github.com/jstimpfle/tetris-on-a-plane | |
// modified by [email protected], in order to make it runnable inside |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PixcelShow | |
description: '' | |
author: lumine2008 | |
host: EXCEL | |
api_set: {} | |
script: | |
content: |- | |
$("#prepCanvas").click(prepCanvas); | |
$("#painting").click(startPainting); | |
var canvas, canvasCtx; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Slicer-Sample | |
description: This is the sample code to show the usage of slicer richapi | |
host: EXCEL | |
api_set: {} | |
script: | |
content: > | |
$("#createaslicer").click(() => tryCatch(createslicer)); | |
$("#slicerstyleandposition").click(() => tryCatch(slicersandp)); |
OlderNewer