diff --git a/src/config.js b/src/config.js index 1a0f2e83a..d224d2d43 100644 --- a/src/config.js +++ b/src/config.js @@ -52,4 +52,6 @@ export default { lang: 'en', //language plugins: [], //plugins, e.g. ['chart'] forceCalculation:false,//强制刷新公式,公式较多会有性能问题,慎用 + rowHeaderWidth: 46, + columeHeaderHeight: 20, } \ No newline at end of file diff --git a/src/controllers/handler.js b/src/controllers/handler.js index b2b0ae076..7bfe63dfe 100644 --- a/src/controllers/handler.js +++ b/src/controllers/handler.js @@ -1293,8 +1293,8 @@ export default function luckysheetHandler() { top = $("#luckysheet-scrollbar-y").scrollTop(); let x = mouse[0]; let y = mouse[1]; - let winH = $("#luckysheet-cell-main").height() - 20, - winW = $("#luckysheet-cell-main").width() - 60; + let winH = $("#luckysheet-cell-main").height() - 20*Store.zoomRatio, + winW = $("#luckysheet-cell-main").width() - 60*Store.zoomRatio; if (y < 0 || y > winH) { let stop; @@ -1315,6 +1315,7 @@ export default function luckysheetHandler() { else { sleft = left + (x - winW) / 2; } + $("#luckysheet-scrollbar-x").scrollLeft(sleft); } } @@ -2307,7 +2308,7 @@ export default function luckysheetHandler() { cfg["rowlen"] = {}; } - cfg["rowlen"][Store.luckysheet_rows_change_size_start[1]] = Math.ceil(size); + cfg["rowlen"][Store.luckysheet_rows_change_size_start[1]] = Math.ceil(size/Store.zoomRatio); if (Store.clearjfundo) { Store.jfundo = []; @@ -2373,7 +2374,7 @@ export default function luckysheetHandler() { cfg["columnlen"] = {}; } - cfg["columnlen"][Store.luckysheet_cols_change_size_start[1]] = Math.ceil(size); + cfg["columnlen"][Store.luckysheet_cols_change_size_start[1]] = Math.ceil(size/Store.zoomRatio); if (Store.clearjfundo) { Store.jfundo = []; diff --git a/src/controllers/menuButton.js b/src/controllers/menuButton.js index 64e8e9dfb..019ab2845 100644 --- a/src/controllers/menuButton.js +++ b/src/controllers/menuButton.js @@ -3154,19 +3154,20 @@ const menuButton = { Store.clearjfundo = true; }, borderfix: function(d, r, c){ - return [-1, -1, 2, 2]; + // return [-1, -1, 2, 2]; let cell = d[r][c]; let bg = null; if(cell == null){ - return [0, 0, 0, 0]; + return [-1, 0, 0, -1]; } else if(d[r][c].bg == null || d[r][c].bg == ""){ - return [0, 0, 0, 0]; + return [-1, 0, 0, -1]; } else { - return [-1, -1, 2, 2]; + return [-2, -1, 1, 0]; + //return [-2, -2, 1, 0]; } }, menuButtonFocus: function(d, r, c){ @@ -3341,16 +3342,15 @@ const menuButton = { } else if(a == "bg"){ if(foucsStatus == null){ - foucsStatus = "#ffffff"; + foucsStatus = null; } else{ foucsStatus = foucsStatus[a]; if(foucsStatus == null){ - foucsStatus = "#ffffff"; + foucsStatus = null; } - - if(foucsStatus.toString().indexOf("rgba") > -1){ + else if(foucsStatus.toString().indexOf("rgba") > -1){ foucsStatus = rgbTohex(foucsStatus); } } diff --git a/src/controllers/sheetmanage.js b/src/controllers/sheetmanage.js index cff1472ae..7ddc1e35d 100644 --- a/src/controllers/sheetmanage.js +++ b/src/controllers/sheetmanage.js @@ -21,7 +21,7 @@ import { createFilterOptions, labelFilterOptionState } from './filter'; import { selectHightlightShow, selectionCopyShow } from './select'; import Store from '../store'; import locale from '../locale/locale'; -import { renderChartShow } from '../expendPlugins/chart/plugin' +import { renderChartShow } from '../expendPlugins/chart/plugin'; const sheetmanage = { generateRandomSheetIndex: function(prefix) { @@ -600,6 +600,8 @@ const sheetmanage = { Store.luckysheet_selection_range = file["luckysheet_selection_range"] == null ? [] : file["luckysheet_selection_range"]; Store.config = file["config"] == null ? {} : file["config"]; + Store.zoomRatio = file["zoomRatio"] == null ? 1 : file["zoomRatio"]; + let r2 = Store.luckysheet_select_save[0].row[1], c2 = Store.luckysheet_select_save[0].column[1]; @@ -758,6 +760,8 @@ const sheetmanage = { file["scrollLeft"] = $("#luckysheet-scrollbar-x").scrollLeft();//列标题 file["scrollTop"] = $("#luckysheet-scrollbar-y").scrollTop();//行标题 + + file["zoomRatio"] = Store.zoomRatio; }, setSheetParam: function(isload) { let index = this.getSheetIndex(Store.currentSheetIndex); @@ -785,18 +789,25 @@ const sheetmanage = { luckysheetFreezen.freezenverticaldata = file["freezen"].vertical == null ? null : file["freezen"].vertical.freezenverticaldata; } + if(file["zoomRatio"]!=null){ + Store.zoomRatio = file["zoomRatio"]; + } + else{ + Store.zoomRatio = 1; + } + createFilterOptions(file["filter_select"], file["filter"]); Store.scrollRefreshSwitch = false; if(file["scrollLeft"]!=null && file["scrollLeft"]>0){ - $("#luckysheet-scrollbar-x").scrollLeft(file["scrollLeft"]); + $("#luckysheet-scrollbar-x").scrollLeft(file["scrollLeft"]*Store.zoomRatio); } else{ $("#luckysheet-scrollbar-x").scrollLeft(0); } if(file["scrollTop"]!=null && file["scrollTop"]>0){ - $("#luckysheet-scrollbar-y").scrollTop(file["scrollTop"]); + $("#luckysheet-scrollbar-y").scrollTop(file["scrollTop"]*Store.zoomRatio); } else{ $("#luckysheet-scrollbar-y").scrollTop(0); diff --git a/src/controllers/updateCell.js b/src/controllers/updateCell.js index 4ba8223ff..e169f58e7 100644 --- a/src/controllers/updateCell.js +++ b/src/controllers/updateCell.js @@ -34,14 +34,22 @@ export function luckysheetupdateCell(row_index1, col_index1, d, cover, isnotfocu } let input_postition = { - "min-width": col - col_pre + 1 - 8, - "min-height": row - row_pre + 1 - 4, - "max-width": winW + scrollLeft - col_pre - 20 - Store.rowHeaderWidth, + "min-width": col - col_pre+ 1- 8, + "min-height": row - row_pre + 1- 4, + + "max-width":winW + scrollLeft - col_pre - 20 - Store.rowHeaderWidth, "max-height": winH + scrollTop - row_pre - 20 - 15 - Store.toolbarHeight - Store.infobarHeight - Store.calculatebarHeight - Store.sheetBarHeight - Store.statisticBarHeight, "left": col_pre + container_offset.left + Store.rowHeaderWidth - scrollLeft - 2, "top": row_pre + container_offset.top + Store.infobarHeight + Store.toolbarHeight + Store.calculatebarHeight + Store.columeHeaderHeight - scrollTop - 2, } + let inputContentScale = { + "transform":"scale("+ Store.zoomRatio +")", + "transform-origin":"left top", + "width":(100 / Store.zoomRatio) + "%", + "height":(100 / Store.zoomRatio) + "%", + } + Store.luckysheetCellUpdate = [row_index, col_index]; if (!isnotfocus) { $("#luckysheet-rich-text-editor").focus().select(); @@ -69,28 +77,51 @@ export function luckysheetupdateCell(row_index1, col_index1, d, cover, isnotfocu if (d[row_index] != null && d[row_index][col_index] != null) { let cell = d[row_index][col_index]; let htValue = cell["ht"]; + let leftOrigin = "left", topOrigin = "top"; if(htValue == "0"){//0 center, 1 left, 2 right input_postition = { - "min-width": col - col_pre + 1 - 8, - "min-height": row - row_pre + 1 - 4, + "min-width": col - col_pre + 1- 8, + "min-height": row - row_pre + 1- 4, + // "transform":"scale("+ Store.zoomRatio +")", + // "transform-origin":"center top", "max-width": winW*2/3, "max-height": winH + scrollTop - row_pre - 20 - 15 - Store.toolbarHeight - Store.infobarHeight - Store.calculatebarHeight - Store.sheetBarHeight - Store.statisticBarHeight, "left": col_pre + container_offset.left + Store.rowHeaderWidth - scrollLeft - 2, "top": row_pre + container_offset.top + Store.infobarHeight + Store.toolbarHeight + Store.calculatebarHeight + Store.columeHeaderHeight - scrollTop - 2, } + + if(Store.zoomRatio<1){ + leftOrigin = "center"; + } + isCenter = true; } else if(htValue == "2"){ input_postition = { - "min-width": col - col_pre + 1 - 8, - "min-height": row - row_pre + 1 - 4, - "max-width": col + container_offset.left - scrollLeft - 8, + "min-width": col - col_pre+ 1- 8, + "min-height": row - row_pre + 1- 4, + // "transform":"scale("+ Store.zoomRatio +")", + // "transform-origin":"right top", + "max-width": col + container_offset.left - scrollLeft - 8, "max-height": winH + scrollTop - row_pre - 20 - 15 - Store.toolbarHeight - Store.infobarHeight - Store.calculatebarHeight - Store.sheetBarHeight - Store.statisticBarHeight, - "right": winW - (container_offset.left + Store.rowHeaderWidth - scrollLeft) - col, + "right": winW - (container_offset.left + (Store.rowHeaderWidth-1) - scrollLeft) - col, "top": row_pre + container_offset.top + Store.infobarHeight + Store.toolbarHeight + Store.calculatebarHeight + Store.columeHeaderHeight - scrollTop - 2, } + + if(Store.zoomRatio<1){ + leftOrigin = "right"; + } + } + + if(cell["vt"]=="0"){ + topOrigin = "center"; + } + else if(cell["vt"]=="2"){ + topOrigin = "bottom"; } + inputContentScale["transform-origin"] = leftOrigin +" " + topOrigin; + if (!cover) { if(cell.f!=null){ @@ -164,6 +195,7 @@ export function luckysheetupdateCell(row_index1, col_index1, d, cover, isnotfocu } $("#luckysheet-input-box").css(input_postition); + $("#luckysheet-rich-text-editor").css(inputContentScale); formula.rangetosheet = Store.currentSheetIndex; formula.createRangeHightlight(); diff --git a/src/controllers/zoom.js b/src/controllers/zoom.js new file mode 100644 index 000000000..b4a2b2ddf --- /dev/null +++ b/src/controllers/zoom.js @@ -0,0 +1,19 @@ +import Store from '../store'; +import locale from '../locale/locale'; +import { replaceHtml } from '../utils/util'; +import rhchInit from '../global/rhchInit'; +import luckysheetConfigsetting from './luckysheetConfigsetting'; + + +export function zoomInitial(){ + //zoom + Store.rowHeaderWidth = luckysheetConfigsetting.rowHeaderWidth * Store.zoomRatio; + Store.columeHeaderHeight = luckysheetConfigsetting.columeHeaderHeight *Store.zoomRatio; + $("#luckysheet-rows-h").width((Store.rowHeaderWidth-1.5)); + $("#luckysheet-cols-h-c").height((Store.columeHeaderHeight-1.5)); + $("#luckysheet-left-top").css({width:Store.rowHeaderWidth-1.5, height:Store.columeHeaderHeight-1.5}); +} + +export function zoomChange(){ + +} \ No newline at end of file diff --git a/src/core.js b/src/core.js index 56c47ba8f..a5da4e9d2 100644 --- a/src/core.js +++ b/src/core.js @@ -88,6 +88,9 @@ luckysheet.create = function (setting) { luckysheetConfigsetting.forceCalculation = extendsetting.forceCalculation; luckysheetConfigsetting.plugins = extendsetting.plugins; + luckysheetConfigsetting.rowHeaderWidth = extendsetting.rowHeaderWidth; + luckysheetConfigsetting.columeHeaderHeight = extendsetting.columeHeaderHeight; + // Register plugins initPlugins(extendsetting.plugins , extendsetting.data); diff --git a/src/demoData/sheetCell.js b/src/demoData/sheetCell.js index b4e9ef3e4..49420b661 100644 --- a/src/demoData/sheetCell.js +++ b/src/demoData/sheetCell.js @@ -1164,6 +1164,7 @@ const sheetCell = { } }, "index": "0", + "zoomRatio":1, "chart": [], "status": "1", "order": "0", @@ -1173,7 +1174,7 @@ const sheetCell = { "r": 0, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1186,7 +1187,7 @@ const sheetCell = { "r": 0, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1199,7 +1200,7 @@ const sheetCell = { "r": 0, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1212,7 +1213,7 @@ const sheetCell = { "r": 0, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1225,7 +1226,7 @@ const sheetCell = { "r": 0, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1238,7 +1239,7 @@ const sheetCell = { "r": 0, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1251,7 +1252,7 @@ const sheetCell = { "r": 0, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1264,7 +1265,7 @@ const sheetCell = { "r": 0, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1277,7 +1278,7 @@ const sheetCell = { "r": 0, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1290,7 +1291,7 @@ const sheetCell = { "r": 0, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1303,7 +1304,7 @@ const sheetCell = { "r": 0, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1322,7 +1323,7 @@ const sheetCell = { "t": "g" }, "m": "Background", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -1335,7 +1336,7 @@ const sheetCell = { "r": 1, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1361,7 +1362,7 @@ const sheetCell = { "r": 1, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1387,7 +1388,7 @@ const sheetCell = { "r": 1, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1400,7 +1401,7 @@ const sheetCell = { "r": 1, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1413,7 +1414,7 @@ const sheetCell = { "r": 1, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1426,7 +1427,7 @@ const sheetCell = { "r": 1, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1439,7 +1440,7 @@ const sheetCell = { "r": 1, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1452,7 +1453,7 @@ const sheetCell = { "r": 1, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1465,7 +1466,7 @@ const sheetCell = { "r": 2, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1478,7 +1479,7 @@ const sheetCell = { "r": 2, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1491,7 +1492,7 @@ const sheetCell = { "r": 2, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1504,7 +1505,7 @@ const sheetCell = { "r": 2, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1517,7 +1518,7 @@ const sheetCell = { "r": 2, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1530,7 +1531,7 @@ const sheetCell = { "r": 2, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1543,7 +1544,7 @@ const sheetCell = { "r": 2, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1556,7 +1557,7 @@ const sheetCell = { "r": 2, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1569,7 +1570,7 @@ const sheetCell = { "r": 2, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1582,7 +1583,7 @@ const sheetCell = { "r": 2, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1595,7 +1596,7 @@ const sheetCell = { "r": 2, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1614,7 +1615,7 @@ const sheetCell = { "t": "g" }, "m": "Border", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -1627,7 +1628,7 @@ const sheetCell = { "r": 3, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1640,7 +1641,7 @@ const sheetCell = { "r": 3, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1653,7 +1654,7 @@ const sheetCell = { "r": 3, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1666,7 +1667,7 @@ const sheetCell = { "r": 3, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1679,7 +1680,7 @@ const sheetCell = { "r": 3, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1692,7 +1693,7 @@ const sheetCell = { "r": 3, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1705,7 +1706,7 @@ const sheetCell = { "r": 3, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1718,7 +1719,7 @@ const sheetCell = { "r": 3, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1731,7 +1732,7 @@ const sheetCell = { "r": 3, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1744,7 +1745,7 @@ const sheetCell = { "r": 3, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1757,7 +1758,7 @@ const sheetCell = { "r": 4, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1770,7 +1771,7 @@ const sheetCell = { "r": 4, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1783,7 +1784,7 @@ const sheetCell = { "r": 4, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1796,7 +1797,7 @@ const sheetCell = { "r": 4, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1809,7 +1810,7 @@ const sheetCell = { "r": 4, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1822,7 +1823,7 @@ const sheetCell = { "r": 4, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1835,7 +1836,7 @@ const sheetCell = { "r": 4, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1848,7 +1849,7 @@ const sheetCell = { "r": 4, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1861,7 +1862,7 @@ const sheetCell = { "r": 4, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1874,7 +1875,7 @@ const sheetCell = { "r": 4, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1887,7 +1888,7 @@ const sheetCell = { "r": 4, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1900,7 +1901,7 @@ const sheetCell = { "r": 5, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1913,7 +1914,7 @@ const sheetCell = { "r": 5, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1926,7 +1927,7 @@ const sheetCell = { "r": 5, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1939,7 +1940,7 @@ const sheetCell = { "r": 5, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1952,7 +1953,7 @@ const sheetCell = { "r": 5, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1965,7 +1966,7 @@ const sheetCell = { "r": 5, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1978,7 +1979,7 @@ const sheetCell = { "r": 5, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1991,7 +1992,7 @@ const sheetCell = { "r": 5, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2004,7 +2005,7 @@ const sheetCell = { "r": 5, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2017,7 +2018,7 @@ const sheetCell = { "r": 5, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2030,7 +2031,7 @@ const sheetCell = { "r": 5, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2043,7 +2044,7 @@ const sheetCell = { "r": 6, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2056,7 +2057,7 @@ const sheetCell = { "r": 6, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2069,7 +2070,7 @@ const sheetCell = { "r": 6, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2082,7 +2083,7 @@ const sheetCell = { "r": 6, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2095,7 +2096,7 @@ const sheetCell = { "r": 6, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2108,7 +2109,7 @@ const sheetCell = { "r": 6, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2121,7 +2122,7 @@ const sheetCell = { "r": 6, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2134,7 +2135,7 @@ const sheetCell = { "r": 6, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2147,7 +2148,7 @@ const sheetCell = { "r": 6, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2160,7 +2161,7 @@ const sheetCell = { "r": 6, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2173,7 +2174,7 @@ const sheetCell = { "r": 6, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2186,7 +2187,7 @@ const sheetCell = { "r": 7, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2199,7 +2200,7 @@ const sheetCell = { "r": 7, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2212,7 +2213,7 @@ const sheetCell = { "r": 7, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2225,7 +2226,7 @@ const sheetCell = { "r": 7, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2238,7 +2239,7 @@ const sheetCell = { "r": 7, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2251,7 +2252,7 @@ const sheetCell = { "r": 7, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2264,7 +2265,7 @@ const sheetCell = { "r": 7, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2277,7 +2278,7 @@ const sheetCell = { "r": 7, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2290,7 +2291,7 @@ const sheetCell = { "r": 7, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2303,7 +2304,7 @@ const sheetCell = { "r": 7, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2316,7 +2317,7 @@ const sheetCell = { "r": 7, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2329,7 +2330,7 @@ const sheetCell = { "r": 8, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2342,7 +2343,7 @@ const sheetCell = { "r": 8, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2355,7 +2356,7 @@ const sheetCell = { "r": 8, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2368,7 +2369,7 @@ const sheetCell = { "r": 8, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2381,7 +2382,7 @@ const sheetCell = { "r": 8, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2394,7 +2395,7 @@ const sheetCell = { "r": 8, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2407,7 +2408,7 @@ const sheetCell = { "r": 8, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2420,7 +2421,7 @@ const sheetCell = { "r": 8, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2433,7 +2434,7 @@ const sheetCell = { "r": 8, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2446,7 +2447,7 @@ const sheetCell = { "r": 8, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2459,7 +2460,7 @@ const sheetCell = { "r": 8, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2472,7 +2473,7 @@ const sheetCell = { "r": 9, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2485,7 +2486,7 @@ const sheetCell = { "r": 9, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2498,7 +2499,7 @@ const sheetCell = { "r": 9, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2511,7 +2512,7 @@ const sheetCell = { "r": 9, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2524,7 +2525,7 @@ const sheetCell = { "r": 9, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2537,7 +2538,7 @@ const sheetCell = { "r": 9, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2550,7 +2551,7 @@ const sheetCell = { "r": 9, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2563,7 +2564,7 @@ const sheetCell = { "r": 9, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2576,7 +2577,7 @@ const sheetCell = { "r": 9, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2589,7 +2590,7 @@ const sheetCell = { "r": 9, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2602,7 +2603,7 @@ const sheetCell = { "r": 9, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2615,7 +2616,7 @@ const sheetCell = { "r": 10, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2628,7 +2629,7 @@ const sheetCell = { "r": 10, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2641,7 +2642,7 @@ const sheetCell = { "r": 10, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2654,7 +2655,7 @@ const sheetCell = { "r": 10, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2667,7 +2668,7 @@ const sheetCell = { "r": 10, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2680,7 +2681,7 @@ const sheetCell = { "r": 10, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2693,7 +2694,7 @@ const sheetCell = { "r": 10, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2706,7 +2707,7 @@ const sheetCell = { "r": 10, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2719,7 +2720,7 @@ const sheetCell = { "r": 10, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2732,7 +2733,7 @@ const sheetCell = { "r": 10, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2745,7 +2746,7 @@ const sheetCell = { "r": 10, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2758,7 +2759,7 @@ const sheetCell = { "r": 11, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2771,7 +2772,7 @@ const sheetCell = { "r": 11, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2784,7 +2785,7 @@ const sheetCell = { "r": 11, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2797,7 +2798,7 @@ const sheetCell = { "r": 11, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2810,7 +2811,7 @@ const sheetCell = { "r": 11, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2823,7 +2824,7 @@ const sheetCell = { "r": 11, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2836,7 +2837,7 @@ const sheetCell = { "r": 11, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2849,7 +2850,7 @@ const sheetCell = { "r": 11, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2862,7 +2863,7 @@ const sheetCell = { "r": 11, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2875,7 +2876,7 @@ const sheetCell = { "r": 11, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2888,7 +2889,7 @@ const sheetCell = { "r": 11, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2901,7 +2902,7 @@ const sheetCell = { "r": 12, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2914,7 +2915,7 @@ const sheetCell = { "r": 12, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2927,7 +2928,7 @@ const sheetCell = { "r": 12, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2940,7 +2941,7 @@ const sheetCell = { "r": 12, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2953,7 +2954,7 @@ const sheetCell = { "r": 12, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2966,7 +2967,7 @@ const sheetCell = { "r": 12, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2979,7 +2980,7 @@ const sheetCell = { "r": 12, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2992,7 +2993,7 @@ const sheetCell = { "r": 12, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3005,7 +3006,7 @@ const sheetCell = { "r": 12, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3018,7 +3019,7 @@ const sheetCell = { "r": 12, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3031,7 +3032,7 @@ const sheetCell = { "r": 12, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3044,7 +3045,7 @@ const sheetCell = { "r": 13, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3057,7 +3058,7 @@ const sheetCell = { "r": 13, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3070,7 +3071,7 @@ const sheetCell = { "r": 13, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3083,7 +3084,7 @@ const sheetCell = { "r": 13, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3096,7 +3097,7 @@ const sheetCell = { "r": 13, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3109,7 +3110,7 @@ const sheetCell = { "r": 13, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3128,7 +3129,7 @@ const sheetCell = { "r": 13, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3141,7 +3142,7 @@ const sheetCell = { "r": 13, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3169,7 +3170,7 @@ const sheetCell = { "r": 13, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3182,7 +3183,7 @@ const sheetCell = { "r": 13, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3201,7 +3202,7 @@ const sheetCell = { "t": "g" }, "m": "Span", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -3214,7 +3215,7 @@ const sheetCell = { "r": 14, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3227,7 +3228,7 @@ const sheetCell = { "r": 14, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3255,7 +3256,7 @@ const sheetCell = { "r": 14, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3277,7 +3278,7 @@ const sheetCell = { "r": 14, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3308,7 +3309,7 @@ const sheetCell = { "r": 14, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3321,7 +3322,7 @@ const sheetCell = { "r": 14, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3334,7 +3335,7 @@ const sheetCell = { "r": 15, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3347,7 +3348,7 @@ const sheetCell = { "r": 15, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3360,7 +3361,7 @@ const sheetCell = { "r": 15, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3373,7 +3374,7 @@ const sheetCell = { "r": 15, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3386,7 +3387,7 @@ const sheetCell = { "r": 15, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3408,7 +3409,7 @@ const sheetCell = { "r": 15, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3439,7 +3440,7 @@ const sheetCell = { "r": 15, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3452,7 +3453,7 @@ const sheetCell = { "r": 15, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3465,7 +3466,7 @@ const sheetCell = { "r": 16, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3478,7 +3479,7 @@ const sheetCell = { "r": 16, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3491,7 +3492,7 @@ const sheetCell = { "r": 16, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3504,7 +3505,7 @@ const sheetCell = { "r": 16, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3517,7 +3518,7 @@ const sheetCell = { "r": 16, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3530,7 +3531,7 @@ const sheetCell = { "r": 16, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3543,7 +3544,7 @@ const sheetCell = { "r": 16, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3556,7 +3557,7 @@ const sheetCell = { "r": 16, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3569,7 +3570,7 @@ const sheetCell = { "r": 16, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3582,7 +3583,7 @@ const sheetCell = { "r": 16, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3595,7 +3596,7 @@ const sheetCell = { "r": 16, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3614,7 +3615,7 @@ const sheetCell = { "t": "g" }, "m": "Font", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -3627,7 +3628,7 @@ const sheetCell = { "r": 17, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3645,7 +3646,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3664,7 +3665,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3683,7 +3684,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3702,7 +3703,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3740,7 +3741,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3754,7 +3755,7 @@ const sheetCell = { "r": 17, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3767,7 +3768,7 @@ const sheetCell = { "r": 17, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3780,7 +3781,7 @@ const sheetCell = { "r": 17, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3793,7 +3794,7 @@ const sheetCell = { "r": 18, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3806,7 +3807,7 @@ const sheetCell = { "r": 18, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3819,7 +3820,7 @@ const sheetCell = { "r": 18, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3832,7 +3833,7 @@ const sheetCell = { "r": 18, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3845,7 +3846,7 @@ const sheetCell = { "r": 18, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3858,7 +3859,7 @@ const sheetCell = { "r": 18, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3871,7 +3872,7 @@ const sheetCell = { "r": 18, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3884,7 +3885,7 @@ const sheetCell = { "r": 18, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3897,7 +3898,7 @@ const sheetCell = { "r": 18, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3910,7 +3911,7 @@ const sheetCell = { "r": 18, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3923,7 +3924,7 @@ const sheetCell = { "r": 18, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3936,7 +3937,7 @@ const sheetCell = { "r": 19, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3949,7 +3950,7 @@ const sheetCell = { "r": 19, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3986,7 +3987,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -4005,7 +4006,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 1, "ff": 0, @@ -4024,7 +4025,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4043,7 +4044,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4061,7 +4062,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4074,7 +4075,7 @@ const sheetCell = { "r": 19, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4087,7 +4088,7 @@ const sheetCell = { "r": 19, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4100,7 +4101,7 @@ const sheetCell = { "r": 19, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4113,7 +4114,7 @@ const sheetCell = { "r": 20, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4126,7 +4127,7 @@ const sheetCell = { "r": 20, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4139,7 +4140,7 @@ const sheetCell = { "r": 20, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4152,7 +4153,7 @@ const sheetCell = { "r": 20, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4165,7 +4166,7 @@ const sheetCell = { "r": 20, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4178,7 +4179,7 @@ const sheetCell = { "r": 20, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4191,7 +4192,7 @@ const sheetCell = { "r": 20, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4204,7 +4205,7 @@ const sheetCell = { "r": 20, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4217,7 +4218,7 @@ const sheetCell = { "r": 20, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4230,7 +4231,7 @@ const sheetCell = { "r": 20, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4243,7 +4244,7 @@ const sheetCell = { "r": 20, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4262,7 +4263,7 @@ const sheetCell = { "t": "g" }, "m": "Format", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -4275,7 +4276,7 @@ const sheetCell = { "r": 21, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4292,7 +4293,7 @@ const sheetCell = { "fa": "##0.00", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4311,7 +4312,7 @@ const sheetCell = { "fa": "$#,##0.00_);($#,##0.00)", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4330,7 +4331,7 @@ const sheetCell = { "fa": "\"$\" 0.00", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4349,7 +4350,7 @@ const sheetCell = { "fa": "0%", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4368,7 +4369,7 @@ const sheetCell = { "fa": "# ?/?", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4383,7 +4384,7 @@ const sheetCell = { "r": 21, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4396,7 +4397,7 @@ const sheetCell = { "r": 21, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4409,7 +4410,7 @@ const sheetCell = { "r": 21, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4422,7 +4423,7 @@ const sheetCell = { "r": 21, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4435,7 +4436,7 @@ const sheetCell = { "r": 22, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4448,7 +4449,7 @@ const sheetCell = { "r": 22, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4461,7 +4462,7 @@ const sheetCell = { "r": 22, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4474,7 +4475,7 @@ const sheetCell = { "r": 22, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4487,7 +4488,7 @@ const sheetCell = { "r": 22, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4500,7 +4501,7 @@ const sheetCell = { "r": 22, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4513,7 +4514,7 @@ const sheetCell = { "r": 22, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4526,7 +4527,7 @@ const sheetCell = { "r": 22, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4539,7 +4540,7 @@ const sheetCell = { "r": 22, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4552,7 +4553,7 @@ const sheetCell = { "r": 22, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4565,7 +4566,7 @@ const sheetCell = { "r": 22, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4578,7 +4579,7 @@ const sheetCell = { "r": 23, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4591,7 +4592,7 @@ const sheetCell = { "r": 23, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4608,7 +4609,7 @@ const sheetCell = { "fa": "0.00E+00", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4629,7 +4630,7 @@ const sheetCell = { "t": "n" }, "m": "0.25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4646,7 +4647,7 @@ const sheetCell = { "fa": "AM/PM h:mm:ss", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4665,7 +4666,7 @@ const sheetCell = { "fa": "yyyy/MM/dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4684,7 +4685,7 @@ const sheetCell = { "fa": "yyyy\"年\"M\"月\"d\"日\"", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4699,7 +4700,7 @@ const sheetCell = { "r": 23, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4712,7 +4713,7 @@ const sheetCell = { "r": 23, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4725,7 +4726,7 @@ const sheetCell = { "r": 23, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4738,7 +4739,7 @@ const sheetCell = { "r": 23, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4751,7 +4752,7 @@ const sheetCell = { "r": 24, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4764,7 +4765,7 @@ const sheetCell = { "r": 24, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4777,7 +4778,7 @@ const sheetCell = { "r": 24, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4790,7 +4791,7 @@ const sheetCell = { "r": 24, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4803,7 +4804,7 @@ const sheetCell = { "r": 24, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4816,7 +4817,7 @@ const sheetCell = { "r": 24, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4829,7 +4830,7 @@ const sheetCell = { "r": 24, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4842,7 +4843,7 @@ const sheetCell = { "r": 24, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4855,7 +4856,7 @@ const sheetCell = { "r": 24, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4868,7 +4869,7 @@ const sheetCell = { "r": 24, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4881,7 +4882,7 @@ const sheetCell = { "r": 24, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4900,7 +4901,7 @@ const sheetCell = { "t": "g" }, "m": "Alignment", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -4913,7 +4914,7 @@ const sheetCell = { "r": 25, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4932,7 +4933,7 @@ const sheetCell = { "t": "g" }, "m": "Top Left", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4951,7 +4952,7 @@ const sheetCell = { "t": "g" }, "m": "Top Center", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4970,7 +4971,7 @@ const sheetCell = { "t": "g" }, "m": "Top Right", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4989,7 +4990,7 @@ const sheetCell = { "t": "g" }, "m": "Center Left", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5008,7 +5009,7 @@ const sheetCell = { "t": "g" }, "m": "Center Center", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5027,7 +5028,7 @@ const sheetCell = { "t": "g" }, "m": "Center Right", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5046,7 +5047,7 @@ const sheetCell = { "t": "g" }, "m": "Bottom Left", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5065,7 +5066,7 @@ const sheetCell = { "t": "g" }, "m": "Bottom Center", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5084,7 +5085,7 @@ const sheetCell = { "t": "g" }, "m": "Bottom Right", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5097,7 +5098,7 @@ const sheetCell = { "r": 26, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5110,7 +5111,7 @@ const sheetCell = { "r": 26, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5123,7 +5124,7 @@ const sheetCell = { "r": 26, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5136,7 +5137,7 @@ const sheetCell = { "r": 26, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5149,7 +5150,7 @@ const sheetCell = { "r": 26, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5162,7 +5163,7 @@ const sheetCell = { "r": 26, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5175,7 +5176,7 @@ const sheetCell = { "r": 26, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5188,7 +5189,7 @@ const sheetCell = { "r": 26, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5201,7 +5202,7 @@ const sheetCell = { "r": 26, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5214,7 +5215,7 @@ const sheetCell = { "r": 26, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5227,7 +5228,7 @@ const sheetCell = { "r": 26, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5240,7 +5241,7 @@ const sheetCell = { "r": 27, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5253,7 +5254,7 @@ const sheetCell = { "r": 27, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5266,7 +5267,7 @@ const sheetCell = { "r": 27, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5279,7 +5280,7 @@ const sheetCell = { "r": 27, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5292,7 +5293,7 @@ const sheetCell = { "r": 27, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5305,7 +5306,7 @@ const sheetCell = { "r": 27, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5318,7 +5319,7 @@ const sheetCell = { "r": 27, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5331,7 +5332,7 @@ const sheetCell = { "r": 27, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5344,7 +5345,7 @@ const sheetCell = { "r": 27, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5357,7 +5358,7 @@ const sheetCell = { "r": 27, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5370,7 +5371,7 @@ const sheetCell = { "r": 27, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5389,7 +5390,7 @@ const sheetCell = { "t": "g" }, "m": "WordWrap", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -5402,7 +5403,7 @@ const sheetCell = { "r": 28, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5421,7 +5422,7 @@ const sheetCell = { "t": "g" }, "m": "ABCDEFGHIJKLMNOPQRSTUVWXYZ", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5439,7 +5440,7 @@ const sheetCell = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5453,7 +5454,7 @@ const sheetCell = { "r": 28, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5466,7 +5467,7 @@ const sheetCell = { "r": 28, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5479,7 +5480,7 @@ const sheetCell = { "r": 28, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5492,7 +5493,7 @@ const sheetCell = { "r": 28, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5505,7 +5506,7 @@ const sheetCell = { "r": 28, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5518,7 +5519,7 @@ const sheetCell = { "r": 28, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5531,7 +5532,7 @@ const sheetCell = { "r": 28, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, diff --git a/src/demoData/sheetChart.js b/src/demoData/sheetChart.js index 65f7cc6ff..a95e63660 100644 --- a/src/demoData/sheetChart.js +++ b/src/demoData/sheetChart.js @@ -10,7 +10,7 @@ const sheetChart = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -29,7 +29,7 @@ const sheetChart = { "t": "g" }, "m": "Mon", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -48,7 +48,7 @@ const sheetChart = { "t": "g" }, "m": "Tues", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -67,7 +67,7 @@ const sheetChart = { "t": "g" }, "m": "Wed", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -86,7 +86,7 @@ const sheetChart = { "t": "g" }, "m": "Thur", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -105,7 +105,7 @@ const sheetChart = { "t": "g" }, "m": "Fri", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -124,7 +124,7 @@ const sheetChart = { "t": "g" }, "m": "Sat", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -143,7 +143,7 @@ const sheetChart = { "t": "g" }, "m": "Sun", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -162,7 +162,7 @@ const sheetChart = { "t": "g" }, "m": "BUS", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -181,7 +181,7 @@ const sheetChart = { "t": "n" }, "m": "320", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -200,7 +200,7 @@ const sheetChart = { "t": "n" }, "m": "302", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -219,7 +219,7 @@ const sheetChart = { "t": "n" }, "m": "301", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -238,7 +238,7 @@ const sheetChart = { "t": "n" }, "m": "334", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -257,7 +257,7 @@ const sheetChart = { "t": "n" }, "m": "390", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -276,7 +276,7 @@ const sheetChart = { "t": "n" }, "m": "330", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -295,7 +295,7 @@ const sheetChart = { "t": "n" }, "m": "320", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -314,7 +314,7 @@ const sheetChart = { "t": "g" }, "m": "UBER", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -333,7 +333,7 @@ const sheetChart = { "t": "n" }, "m": "120", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -352,7 +352,7 @@ const sheetChart = { "t": "n" }, "m": "132", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -371,7 +371,7 @@ const sheetChart = { "t": "n" }, "m": "101", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -390,7 +390,7 @@ const sheetChart = { "t": "n" }, "m": "134", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -409,7 +409,7 @@ const sheetChart = { "t": "n" }, "m": "90", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -428,7 +428,7 @@ const sheetChart = { "t": "n" }, "m": "230", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -447,7 +447,7 @@ const sheetChart = { "t": "n" }, "m": "210", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -466,7 +466,7 @@ const sheetChart = { "t": "g" }, "m": "TAXI", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -485,7 +485,7 @@ const sheetChart = { "t": "n" }, "m": "220", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -504,7 +504,7 @@ const sheetChart = { "t": "n" }, "m": "182", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -523,7 +523,7 @@ const sheetChart = { "t": "n" }, "m": "191", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -542,7 +542,7 @@ const sheetChart = { "t": "n" }, "m": "234", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -561,7 +561,7 @@ const sheetChart = { "t": "n" }, "m": "290", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -580,7 +580,7 @@ const sheetChart = { "t": "n" }, "m": "330", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -599,7 +599,7 @@ const sheetChart = { "t": "n" }, "m": "310", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -618,7 +618,7 @@ const sheetChart = { "t": "g" }, "m": "SUBWAY", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -637,7 +637,7 @@ const sheetChart = { "t": "n" }, "m": "820", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -656,7 +656,7 @@ const sheetChart = { "t": "n" }, "m": "832", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -675,7 +675,7 @@ const sheetChart = { "t": "n" }, "m": "901", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -694,7 +694,7 @@ const sheetChart = { "t": "n" }, "m": "934", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -713,7 +713,7 @@ const sheetChart = { "t": "n" }, "m": "1290", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -732,7 +732,7 @@ const sheetChart = { "t": "n" }, "m": "1330", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -751,7 +751,7 @@ const sheetChart = { "t": "n" }, "m": "1320", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -770,7 +770,7 @@ const sheetChart = { "t": "g" }, "m": "country", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -789,7 +789,7 @@ const sheetChart = { "t": "g" }, "m": "Population", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -808,7 +808,7 @@ const sheetChart = { "t": "g" }, "m": "India", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -827,7 +827,7 @@ const sheetChart = { "t": "n" }, "m": "1354051854", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -846,7 +846,7 @@ const sheetChart = { "t": "g" }, "m": "Pakistan", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -865,7 +865,7 @@ const sheetChart = { "t": "n" }, "m": "200813818", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -884,7 +884,7 @@ const sheetChart = { "t": "g" }, "m": "China", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -903,7 +903,7 @@ const sheetChart = { "t": "n" }, "m": "1415045928", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -922,7 +922,7 @@ const sheetChart = { "t": "g" }, "m": "Japan", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -941,7 +941,7 @@ const sheetChart = { "t": "n" }, "m": "127185332", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -960,7 +960,7 @@ const sheetChart = { "t": "g" }, "m": "South-Eastern", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -979,7 +979,7 @@ const sheetChart = { "t": "n" }, "m": "655636576", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -998,7 +998,7 @@ const sheetChart = { "t": "g" }, "m": "Western", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1017,7 +1017,7 @@ const sheetChart = { "t": "n" }, "m": "272298399", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1036,7 +1036,7 @@ const sheetChart = { "t": "g" }, "m": "Eastern", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1055,7 +1055,7 @@ const sheetChart = { "t": "n" }, "m": "433643132", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1074,7 +1074,7 @@ const sheetChart = { "t": "g" }, "m": "Western", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1093,7 +1093,7 @@ const sheetChart = { "t": "n" }, "m": "381980688", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1112,7 +1112,7 @@ const sheetChart = { "t": "g" }, "m": "Northern", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1131,7 +1131,7 @@ const sheetChart = { "t": "n" }, "m": "237784677", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1150,7 +1150,7 @@ const sheetChart = { "t": "g" }, "m": "Others", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1169,7 +1169,7 @@ const sheetChart = { "t": "n" }, "m": "234512021", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1188,7 +1188,7 @@ const sheetChart = { "t": "g" }, "m": "Europe", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1207,7 +1207,7 @@ const sheetChart = { "t": "n" }, "m": "742648010", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1280,7 +1280,7 @@ const sheetChart = { [{ "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1295,7 +1295,7 @@ const sheetChart = { "t": "g" }, "m": "Mon", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1310,7 +1310,7 @@ const sheetChart = { "t": "g" }, "m": "Tues", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1325,7 +1325,7 @@ const sheetChart = { "t": "g" }, "m": "Wed", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1340,7 +1340,7 @@ const sheetChart = { "t": "g" }, "m": "Thur", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1355,7 +1355,7 @@ const sheetChart = { "t": "g" }, "m": "Fri", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1370,7 +1370,7 @@ const sheetChart = { "t": "g" }, "m": "Sat", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1385,7 +1385,7 @@ const sheetChart = { "t": "g" }, "m": "Sun", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1401,7 +1401,7 @@ const sheetChart = { "t": "g" }, "m": "BUS", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1416,7 +1416,7 @@ const sheetChart = { "t": "n" }, "m": "320", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1431,7 +1431,7 @@ const sheetChart = { "t": "n" }, "m": "302", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1446,7 +1446,7 @@ const sheetChart = { "t": "n" }, "m": "301", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1461,7 +1461,7 @@ const sheetChart = { "t": "n" }, "m": "334", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1476,7 +1476,7 @@ const sheetChart = { "t": "n" }, "m": "390", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1491,7 +1491,7 @@ const sheetChart = { "t": "n" }, "m": "330", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1506,7 +1506,7 @@ const sheetChart = { "t": "n" }, "m": "320", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1522,7 +1522,7 @@ const sheetChart = { "t": "g" }, "m": "UBER", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1537,7 +1537,7 @@ const sheetChart = { "t": "n" }, "m": "120", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1552,7 +1552,7 @@ const sheetChart = { "t": "n" }, "m": "132", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1567,7 +1567,7 @@ const sheetChart = { "t": "n" }, "m": "101", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1582,7 +1582,7 @@ const sheetChart = { "t": "n" }, "m": "134", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1597,7 +1597,7 @@ const sheetChart = { "t": "n" }, "m": "90", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1612,7 +1612,7 @@ const sheetChart = { "t": "n" }, "m": "230", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1627,7 +1627,7 @@ const sheetChart = { "t": "n" }, "m": "210", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1643,7 +1643,7 @@ const sheetChart = { "t": "g" }, "m": "TAXI", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1658,7 +1658,7 @@ const sheetChart = { "t": "n" }, "m": "220", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1673,7 +1673,7 @@ const sheetChart = { "t": "n" }, "m": "182", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1688,7 +1688,7 @@ const sheetChart = { "t": "n" }, "m": "191", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1703,7 +1703,7 @@ const sheetChart = { "t": "n" }, "m": "234", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1718,7 +1718,7 @@ const sheetChart = { "t": "n" }, "m": "290", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1733,7 +1733,7 @@ const sheetChart = { "t": "n" }, "m": "330", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1748,7 +1748,7 @@ const sheetChart = { "t": "n" }, "m": "310", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1764,7 +1764,7 @@ const sheetChart = { "t": "g" }, "m": "SUBWAY", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1779,7 +1779,7 @@ const sheetChart = { "t": "n" }, "m": "820", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1794,7 +1794,7 @@ const sheetChart = { "t": "n" }, "m": "832", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1809,7 +1809,7 @@ const sheetChart = { "t": "n" }, "m": "901", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1824,7 +1824,7 @@ const sheetChart = { "t": "n" }, "m": "934", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1839,7 +1839,7 @@ const sheetChart = { "t": "n" }, "m": "1290", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1854,7 +1854,7 @@ const sheetChart = { "t": "n" }, "m": "1330", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1869,7 +1869,7 @@ const sheetChart = { "t": "n" }, "m": "1320", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2565,7 +2565,7 @@ const sheetChart = { [{ "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2580,7 +2580,7 @@ const sheetChart = { "t": "g" }, "m": "Mon", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2595,7 +2595,7 @@ const sheetChart = { "t": "g" }, "m": "Tues", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2610,7 +2610,7 @@ const sheetChart = { "t": "g" }, "m": "Wed", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2625,7 +2625,7 @@ const sheetChart = { "t": "g" }, "m": "Thur", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2640,7 +2640,7 @@ const sheetChart = { "t": "g" }, "m": "Fri", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2655,7 +2655,7 @@ const sheetChart = { "t": "g" }, "m": "Sat", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2670,7 +2670,7 @@ const sheetChart = { "t": "g" }, "m": "Sun", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2686,7 +2686,7 @@ const sheetChart = { "t": "g" }, "m": "BUS", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2701,7 +2701,7 @@ const sheetChart = { "t": "n" }, "m": "320", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2716,7 +2716,7 @@ const sheetChart = { "t": "n" }, "m": "302", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2731,7 +2731,7 @@ const sheetChart = { "t": "n" }, "m": "301", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2746,7 +2746,7 @@ const sheetChart = { "t": "n" }, "m": "334", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2761,7 +2761,7 @@ const sheetChart = { "t": "n" }, "m": "390", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2776,7 +2776,7 @@ const sheetChart = { "t": "n" }, "m": "330", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2791,7 +2791,7 @@ const sheetChart = { "t": "n" }, "m": "320", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2807,7 +2807,7 @@ const sheetChart = { "t": "g" }, "m": "UBER", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2822,7 +2822,7 @@ const sheetChart = { "t": "n" }, "m": "120", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2837,7 +2837,7 @@ const sheetChart = { "t": "n" }, "m": "132", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2852,7 +2852,7 @@ const sheetChart = { "t": "n" }, "m": "101", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2867,7 +2867,7 @@ const sheetChart = { "t": "n" }, "m": "134", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2882,7 +2882,7 @@ const sheetChart = { "t": "n" }, "m": "90", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2897,7 +2897,7 @@ const sheetChart = { "t": "n" }, "m": "230", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2912,7 +2912,7 @@ const sheetChart = { "t": "n" }, "m": "210", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2928,7 +2928,7 @@ const sheetChart = { "t": "g" }, "m": "TAXI", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2943,7 +2943,7 @@ const sheetChart = { "t": "n" }, "m": "220", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2958,7 +2958,7 @@ const sheetChart = { "t": "n" }, "m": "182", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2973,7 +2973,7 @@ const sheetChart = { "t": "n" }, "m": "191", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2988,7 +2988,7 @@ const sheetChart = { "t": "n" }, "m": "234", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3003,7 +3003,7 @@ const sheetChart = { "t": "n" }, "m": "290", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3018,7 +3018,7 @@ const sheetChart = { "t": "n" }, "m": "330", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3033,7 +3033,7 @@ const sheetChart = { "t": "n" }, "m": "310", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3049,7 +3049,7 @@ const sheetChart = { "t": "g" }, "m": "SUBWAY", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3064,7 +3064,7 @@ const sheetChart = { "t": "n" }, "m": "820", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3079,7 +3079,7 @@ const sheetChart = { "t": "n" }, "m": "832", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3094,7 +3094,7 @@ const sheetChart = { "t": "n" }, "m": "901", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3109,7 +3109,7 @@ const sheetChart = { "t": "n" }, "m": "934", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3124,7 +3124,7 @@ const sheetChart = { "t": "n" }, "m": "1290", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3139,7 +3139,7 @@ const sheetChart = { "t": "n" }, "m": "1330", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3154,7 +3154,7 @@ const sheetChart = { "t": "n" }, "m": "1320", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3874,7 +3874,7 @@ const sheetChart = { "t": "g" }, "m": "country", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3889,7 +3889,7 @@ const sheetChart = { "t": "g" }, "m": "Population", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3905,7 +3905,7 @@ const sheetChart = { "t": "g" }, "m": "India", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3920,7 +3920,7 @@ const sheetChart = { "t": "n" }, "m": "1354051854", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3936,7 +3936,7 @@ const sheetChart = { "t": "g" }, "m": "Pakistan", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3951,7 +3951,7 @@ const sheetChart = { "t": "n" }, "m": "200813818", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3967,7 +3967,7 @@ const sheetChart = { "t": "g" }, "m": "China", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3982,7 +3982,7 @@ const sheetChart = { "t": "n" }, "m": "1415045928", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3998,7 +3998,7 @@ const sheetChart = { "t": "g" }, "m": "Japan", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4013,7 +4013,7 @@ const sheetChart = { "t": "n" }, "m": "127185332", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4029,7 +4029,7 @@ const sheetChart = { "t": "g" }, "m": "South-Eastern", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4044,7 +4044,7 @@ const sheetChart = { "t": "n" }, "m": "655636576", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4060,7 +4060,7 @@ const sheetChart = { "t": "g" }, "m": "Western", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4075,7 +4075,7 @@ const sheetChart = { "t": "n" }, "m": "272298399", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4091,7 +4091,7 @@ const sheetChart = { "t": "g" }, "m": "Eastern", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4106,7 +4106,7 @@ const sheetChart = { "t": "n" }, "m": "433643132", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4122,7 +4122,7 @@ const sheetChart = { "t": "g" }, "m": "Western", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4137,7 +4137,7 @@ const sheetChart = { "t": "n" }, "m": "381980688", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4153,7 +4153,7 @@ const sheetChart = { "t": "g" }, "m": "Northern", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4168,7 +4168,7 @@ const sheetChart = { "t": "n" }, "m": "237784677", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4184,7 +4184,7 @@ const sheetChart = { "t": "g" }, "m": "Others", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4199,7 +4199,7 @@ const sheetChart = { "t": "n" }, "m": "234512021", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4215,7 +4215,7 @@ const sheetChart = { "t": "g" }, "m": "Europe", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4230,7 +4230,7 @@ const sheetChart = { "t": "n" }, "m": "742648010", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, diff --git a/src/demoData/sheetConditionFormat.js b/src/demoData/sheetConditionFormat.js index 2e03bee20..acf9059e8 100644 --- a/src/demoData/sheetConditionFormat.js +++ b/src/demoData/sheetConditionFormat.js @@ -1,6 +1,7 @@ const sheetConditionFormat = { "name": "Conditional Format", "color": "", + "zoomRatio":1, "config": { "merge": { "8_10": { @@ -165,7 +166,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -180,7 +181,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -195,7 +196,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -210,7 +211,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -225,7 +226,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -240,7 +241,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -255,7 +256,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -270,7 +271,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -285,7 +286,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -300,7 +301,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -315,7 +316,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -330,7 +331,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -345,7 +346,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -360,7 +361,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -379,7 +380,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "Cell Value", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -394,7 +395,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -413,7 +414,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "Specific Text", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -428,7 +429,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -447,7 +448,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "Unique", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -462,7 +463,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -481,7 +482,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "Duplicate", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -496,7 +497,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -515,7 +516,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "Date Occurring", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -545,7 +546,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -560,7 +561,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -579,7 +580,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -594,7 +595,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -613,7 +614,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "test", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -628,7 +629,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -647,7 +648,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -662,7 +663,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -681,7 +682,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -696,7 +697,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -714,7 +715,7 @@ const sheetConditionFormat = { "fa": "yyyy-MM-dd hh:mm", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -748,7 +749,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -763,7 +764,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -782,7 +783,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -797,7 +798,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -816,7 +817,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "bad", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -831,7 +832,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -850,7 +851,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -865,7 +866,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -884,7 +885,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -899,7 +900,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -917,7 +918,7 @@ const sheetConditionFormat = { "fa": "yyyy-MM-dd hh:mm", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -951,7 +952,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -966,7 +967,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -985,7 +986,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "2", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1000,7 +1001,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1019,7 +1020,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "good", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1034,7 +1035,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1053,7 +1054,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "11", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1068,7 +1069,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1087,7 +1088,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "11", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1102,7 +1103,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1120,7 +1121,7 @@ const sheetConditionFormat = { "fa": "yyyy-MM-dd hh:mm", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1151,7 +1152,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1166,7 +1167,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1185,7 +1186,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "3", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1200,7 +1201,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1219,7 +1220,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "testing", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1234,7 +1235,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1253,7 +1254,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "5", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1268,7 +1269,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1287,7 +1288,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "5", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1302,7 +1303,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1320,7 +1321,7 @@ const sheetConditionFormat = { "fa": "yyyy-MM-dd hh:mm", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1351,7 +1352,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1366,7 +1367,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1385,7 +1386,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "4", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1400,7 +1401,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1419,7 +1420,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "tested", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1434,7 +1435,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1453,7 +1454,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1468,7 +1469,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1487,7 +1488,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1502,7 +1503,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1520,7 +1521,7 @@ const sheetConditionFormat = { "fa": "yyyy-MM-dd hh:mm", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1554,7 +1555,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1569,7 +1570,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1588,7 +1589,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "5", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1603,7 +1604,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1622,7 +1623,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "general", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1637,7 +1638,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1656,7 +1657,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "120", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1671,7 +1672,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1690,7 +1691,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "120", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1705,7 +1706,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1723,7 +1724,7 @@ const sheetConditionFormat = { "fa": "yyyy-MM-dd hh:mm", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1757,7 +1758,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1772,7 +1773,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1787,7 +1788,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1802,7 +1803,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1817,7 +1818,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1832,7 +1833,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1847,7 +1848,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1866,7 +1867,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1881,7 +1882,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1896,7 +1897,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1911,7 +1912,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1941,7 +1942,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1956,7 +1957,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1975,7 +1976,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "Top/Bottom", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -1990,7 +1991,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2009,7 +2010,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "Average", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -2024,7 +2025,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2043,7 +2044,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "2-Color Scale", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -2062,7 +2063,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "3-Color Scale", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -2077,7 +2078,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2096,7 +2097,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "Data Bar", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -2126,7 +2127,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2141,7 +2142,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2160,7 +2161,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2175,7 +2176,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2194,7 +2195,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2209,7 +2210,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2262,7 +2263,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2281,7 +2282,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2311,7 +2312,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2326,7 +2327,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2345,7 +2346,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2360,7 +2361,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2379,7 +2380,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2394,7 +2395,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2447,7 +2448,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2466,7 +2467,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "15", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2496,7 +2497,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2511,7 +2512,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2530,7 +2531,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "2", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2545,7 +2546,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2564,7 +2565,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "100", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2579,7 +2580,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2632,7 +2633,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2651,7 +2652,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2681,7 +2682,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2696,7 +2697,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2715,7 +2716,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "3", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2730,7 +2731,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2749,7 +2750,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "2", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2764,7 +2765,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2817,7 +2818,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2836,7 +2837,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2866,7 +2867,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2881,7 +2882,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2900,7 +2901,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "4", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2915,7 +2916,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2934,7 +2935,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "60", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2949,7 +2950,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3002,7 +3003,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3021,7 +3022,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-15", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3051,7 +3052,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3066,7 +3067,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3085,7 +3086,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "5", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3100,7 +3101,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3119,7 +3120,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "3", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3134,7 +3135,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3187,7 +3188,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3206,7 +3207,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3236,7 +3237,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3251,7 +3252,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3266,7 +3267,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3281,7 +3282,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3296,7 +3297,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3315,7 +3316,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3330,7 +3331,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3345,7 +3346,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3360,7 +3361,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3375,7 +3376,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3390,7 +3391,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3405,7 +3406,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3420,7 +3421,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3435,7 +3436,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3450,7 +3451,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3465,7 +3466,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3480,7 +3481,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3495,7 +3496,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3510,7 +3511,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3525,7 +3526,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3540,7 +3541,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3555,7 +3556,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3570,7 +3571,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3585,7 +3586,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3600,7 +3601,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3615,7 +3616,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3634,7 +3635,7 @@ const sheetConditionFormat = { "t": "g" }, "m": "Icon Set", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -3763,7 +3764,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3778,7 +3779,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3797,7 +3798,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3816,7 +3817,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3835,7 +3836,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3854,7 +3855,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3873,7 +3874,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3892,7 +3893,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3911,7 +3912,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3930,7 +3931,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3949,7 +3950,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3968,7 +3969,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3983,7 +3984,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3998,7 +3999,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4017,7 +4018,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4036,7 +4037,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4055,7 +4056,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4074,7 +4075,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4093,7 +4094,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4112,7 +4113,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4131,7 +4132,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4150,7 +4151,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4169,7 +4170,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4188,7 +4189,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4203,7 +4204,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4218,7 +4219,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4237,7 +4238,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4256,7 +4257,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4275,7 +4276,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4294,7 +4295,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4313,7 +4314,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4332,7 +4333,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4351,7 +4352,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4370,7 +4371,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4389,7 +4390,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4408,7 +4409,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4423,7 +4424,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4438,7 +4439,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4457,7 +4458,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4476,7 +4477,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4495,7 +4496,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4514,7 +4515,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4533,7 +4534,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4552,7 +4553,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4571,7 +4572,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4590,7 +4591,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4609,7 +4610,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4628,7 +4629,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4643,7 +4644,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4658,7 +4659,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4677,7 +4678,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4696,7 +4697,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4715,7 +4716,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4734,7 +4735,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4753,7 +4754,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4772,7 +4773,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4791,7 +4792,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4810,7 +4811,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4829,7 +4830,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4848,7 +4849,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4863,7 +4864,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4878,7 +4879,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4893,7 +4894,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5004,7 +5005,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5019,7 +5020,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5038,7 +5039,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5057,7 +5058,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5076,7 +5077,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5095,7 +5096,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5114,7 +5115,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5133,7 +5134,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5152,7 +5153,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5171,7 +5172,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5190,7 +5191,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5209,7 +5210,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5224,7 +5225,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5239,7 +5240,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5258,7 +5259,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5277,7 +5278,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5296,7 +5297,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5315,7 +5316,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5334,7 +5335,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5353,7 +5354,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5372,7 +5373,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5391,7 +5392,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5410,7 +5411,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5429,7 +5430,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "-25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5444,7 +5445,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5459,7 +5460,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5478,7 +5479,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5497,7 +5498,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5516,7 +5517,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5535,7 +5536,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5554,7 +5555,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5573,7 +5574,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5592,7 +5593,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5611,7 +5612,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5630,7 +5631,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5649,7 +5650,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5664,7 +5665,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5679,7 +5680,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5698,7 +5699,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5717,7 +5718,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5736,7 +5737,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5755,7 +5756,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5774,7 +5775,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5793,7 +5794,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5812,7 +5813,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5831,7 +5832,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5850,7 +5851,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5869,7 +5870,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5884,7 +5885,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5899,7 +5900,7 @@ const sheetConditionFormat = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5918,7 +5919,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5937,7 +5938,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5956,7 +5957,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5975,7 +5976,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5994,7 +5995,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6013,7 +6014,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6032,7 +6033,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6051,7 +6052,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6070,7 +6071,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6089,7 +6090,7 @@ const sheetConditionFormat = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, diff --git a/src/demoData/sheetFormula.js b/src/demoData/sheetFormula.js index dc55f2312..2ca530927 100644 --- a/src/demoData/sheetFormula.js +++ b/src/demoData/sheetFormula.js @@ -94,7 +94,7 @@ const sheetFormula = { "r": 0, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -107,7 +107,7 @@ const sheetFormula = { "r": 0, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -120,7 +120,7 @@ const sheetFormula = { "r": 0, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -133,7 +133,7 @@ const sheetFormula = { "r": 0, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -146,7 +146,7 @@ const sheetFormula = { "r": 0, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -159,7 +159,7 @@ const sheetFormula = { "r": 0, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -172,7 +172,7 @@ const sheetFormula = { "r": 0, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -185,7 +185,7 @@ const sheetFormula = { "r": 0, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -198,7 +198,7 @@ const sheetFormula = { "r": 0, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -211,7 +211,7 @@ const sheetFormula = { "r": 0, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -224,7 +224,7 @@ const sheetFormula = { "r": 0, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -243,7 +243,7 @@ const sheetFormula = { "t": "g" }, "m": "Basic Function", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 9, @@ -256,7 +256,7 @@ const sheetFormula = { "r": 1, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -275,7 +275,7 @@ const sheetFormula = { "t": "g" }, "m": "Name", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -294,7 +294,7 @@ const sheetFormula = { "t": "g" }, "m": "Age", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -307,7 +307,7 @@ const sheetFormula = { "r": 1, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -320,7 +320,7 @@ const sheetFormula = { "r": 1, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -339,7 +339,7 @@ const sheetFormula = { "t": "g" }, "m": "Indirect Function", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 9, @@ -352,7 +352,7 @@ const sheetFormula = { "r": 1, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -371,7 +371,7 @@ const sheetFormula = { "t": "g" }, "m": "J2", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -390,7 +390,7 @@ const sheetFormula = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -403,7 +403,7 @@ const sheetFormula = { "r": 1, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -416,7 +416,7 @@ const sheetFormula = { "r": 2, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -429,7 +429,7 @@ const sheetFormula = { "r": 2, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -448,7 +448,7 @@ const sheetFormula = { "t": "g" }, "m": "Jack", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -467,7 +467,7 @@ const sheetFormula = { "t": "n" }, "m": "17", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -480,7 +480,7 @@ const sheetFormula = { "r": 2, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -493,7 +493,7 @@ const sheetFormula = { "r": 2, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -506,7 +506,7 @@ const sheetFormula = { "r": 2, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -519,7 +519,7 @@ const sheetFormula = { "r": 2, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -538,7 +538,7 @@ const sheetFormula = { "t": "g" }, "m": "I", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -557,7 +557,7 @@ const sheetFormula = { "t": "n" }, "m": "2", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -570,7 +570,7 @@ const sheetFormula = { "r": 2, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -583,7 +583,7 @@ const sheetFormula = { "r": 3, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -596,7 +596,7 @@ const sheetFormula = { "r": 3, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -615,7 +615,7 @@ const sheetFormula = { "t": "g" }, "m": "Lily", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -634,7 +634,7 @@ const sheetFormula = { "t": "n" }, "m": "23", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -647,7 +647,7 @@ const sheetFormula = { "r": 3, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -660,7 +660,7 @@ const sheetFormula = { "r": 3, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -673,7 +673,7 @@ const sheetFormula = { "r": 3, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -686,7 +686,7 @@ const sheetFormula = { "r": 3, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -705,7 +705,7 @@ const sheetFormula = { "t": "g" }, "m": "J", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -724,7 +724,7 @@ const sheetFormula = { "t": "n" }, "m": "3", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -737,7 +737,7 @@ const sheetFormula = { "r": 3, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -750,7 +750,7 @@ const sheetFormula = { "r": 4, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -763,7 +763,7 @@ const sheetFormula = { "r": 4, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -782,7 +782,7 @@ const sheetFormula = { "t": "g" }, "m": "Bob", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -801,7 +801,7 @@ const sheetFormula = { "t": "n" }, "m": "30", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -814,7 +814,7 @@ const sheetFormula = { "r": 4, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -827,7 +827,7 @@ const sheetFormula = { "r": 4, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -840,7 +840,7 @@ const sheetFormula = { "r": 4, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -853,7 +853,7 @@ const sheetFormula = { "r": 4, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -866,7 +866,7 @@ const sheetFormula = { "r": 4, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -879,7 +879,7 @@ const sheetFormula = { "r": 4, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -892,7 +892,7 @@ const sheetFormula = { "r": 4, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -905,7 +905,7 @@ const sheetFormula = { "r": 5, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -918,7 +918,7 @@ const sheetFormula = { "r": 5, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -937,7 +937,7 @@ const sheetFormula = { "t": "g" }, "m": "Mary", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -956,7 +956,7 @@ const sheetFormula = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -969,7 +969,7 @@ const sheetFormula = { "r": 5, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -982,7 +982,7 @@ const sheetFormula = { "r": 5, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -995,7 +995,7 @@ const sheetFormula = { "r": 5, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1008,7 +1008,7 @@ const sheetFormula = { "r": 5, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1027,7 +1027,7 @@ const sheetFormula = { "t": "g" }, "m": "=INDIRECT(\"I2\")", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1046,7 +1046,7 @@ const sheetFormula = { "t": "g" }, "m": "J2", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1060,7 +1060,7 @@ const sheetFormula = { "r": 5, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1073,7 +1073,7 @@ const sheetFormula = { "r": 6, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1086,7 +1086,7 @@ const sheetFormula = { "r": 6, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1105,7 +1105,7 @@ const sheetFormula = { "t": "g" }, "m": "Average Age:", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1124,7 +1124,7 @@ const sheetFormula = { "t": "n" }, "m": "23.75", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1138,7 +1138,7 @@ const sheetFormula = { "r": 6, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1151,7 +1151,7 @@ const sheetFormula = { "r": 6, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1164,7 +1164,7 @@ const sheetFormula = { "r": 6, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1177,7 +1177,7 @@ const sheetFormula = { "r": 6, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1196,7 +1196,7 @@ const sheetFormula = { "t": "g" }, "m": "=INDIRECT(I2)", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1215,7 +1215,7 @@ const sheetFormula = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1229,7 +1229,7 @@ const sheetFormula = { "r": 6, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1242,7 +1242,7 @@ const sheetFormula = { "r": 7, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1255,7 +1255,7 @@ const sheetFormula = { "r": 7, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1274,7 +1274,7 @@ const sheetFormula = { "t": "g" }, "m": "Max Age:", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1293,7 +1293,7 @@ const sheetFormula = { "t": "n" }, "m": "30", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1307,7 +1307,7 @@ const sheetFormula = { "r": 7, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1320,7 +1320,7 @@ const sheetFormula = { "r": 7, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1333,7 +1333,7 @@ const sheetFormula = { "r": 7, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1346,7 +1346,7 @@ const sheetFormula = { "r": 7, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1365,7 +1365,7 @@ const sheetFormula = { "t": "g" }, "m": "=INDIRECT(\"I\"&(1+2))", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1384,7 +1384,7 @@ const sheetFormula = { "t": "g" }, "m": "I", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1398,7 +1398,7 @@ const sheetFormula = { "r": 7, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1411,7 +1411,7 @@ const sheetFormula = { "r": 8, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1424,7 +1424,7 @@ const sheetFormula = { "r": 8, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1443,7 +1443,7 @@ const sheetFormula = { "t": "g" }, "m": "Min Age:", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1462,7 +1462,7 @@ const sheetFormula = { "t": "n" }, "m": "17", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1476,7 +1476,7 @@ const sheetFormula = { "r": 8, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1489,7 +1489,7 @@ const sheetFormula = { "r": 8, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1502,7 +1502,7 @@ const sheetFormula = { "r": 8, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1515,7 +1515,7 @@ const sheetFormula = { "r": 8, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1534,7 +1534,7 @@ const sheetFormula = { "t": "g" }, "m": "=INDIRECT(I4&J3)", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1553,7 +1553,7 @@ const sheetFormula = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1567,7 +1567,7 @@ const sheetFormula = { "r": 8, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1580,7 +1580,7 @@ const sheetFormula = { "r": 9, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1593,7 +1593,7 @@ const sheetFormula = { "r": 9, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1606,7 +1606,7 @@ const sheetFormula = { "r": 9, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1619,7 +1619,7 @@ const sheetFormula = { "r": 9, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1632,7 +1632,7 @@ const sheetFormula = { "r": 9, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1645,7 +1645,7 @@ const sheetFormula = { "r": 9, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1658,7 +1658,7 @@ const sheetFormula = { "r": 9, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1671,7 +1671,7 @@ const sheetFormula = { "r": 9, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1690,7 +1690,7 @@ const sheetFormula = { "t": "g" }, "m": "=INDIRECT(\"Formula!\"&I2)", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1707,7 +1707,7 @@ const sheetFormula = { "fa": "General", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1723,7 +1723,7 @@ const sheetFormula = { "r": 9, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1736,7 +1736,7 @@ const sheetFormula = { "r": 10, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1749,7 +1749,7 @@ const sheetFormula = { "r": 10, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1762,7 +1762,7 @@ const sheetFormula = { "r": 10, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1775,7 +1775,7 @@ const sheetFormula = { "r": 10, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1788,7 +1788,7 @@ const sheetFormula = { "r": 10, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1801,7 +1801,7 @@ const sheetFormula = { "r": 10, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1814,7 +1814,7 @@ const sheetFormula = { "r": 10, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1827,7 +1827,7 @@ const sheetFormula = { "r": 10, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1846,7 +1846,7 @@ const sheetFormula = { "t": "g" }, "m": "=INDIRECT(\"Formula!I2\")", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1863,7 +1863,7 @@ const sheetFormula = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1879,7 +1879,7 @@ const sheetFormula = { "r": 10, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1892,7 +1892,7 @@ const sheetFormula = { "r": 11, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1905,7 +1905,7 @@ const sheetFormula = { "r": 11, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1918,7 +1918,7 @@ const sheetFormula = { "r": 11, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1931,7 +1931,7 @@ const sheetFormula = { "r": 11, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1944,7 +1944,7 @@ const sheetFormula = { "r": 11, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1957,7 +1957,7 @@ const sheetFormula = { "r": 11, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1970,7 +1970,7 @@ const sheetFormula = { "r": 11, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1983,7 +1983,7 @@ const sheetFormula = { "r": 11, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1996,7 +1996,7 @@ const sheetFormula = { "r": 11, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2009,7 +2009,7 @@ const sheetFormula = { "r": 11, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2022,7 +2022,7 @@ const sheetFormula = { "r": 11, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2041,7 +2041,7 @@ const sheetFormula = { "t": "g" }, "m": "Array Formula", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 9, @@ -2054,7 +2054,7 @@ const sheetFormula = { "r": 12, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2073,7 +2073,7 @@ const sheetFormula = { "t": "g" }, "m": "Calculation", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2137,7 +2137,7 @@ const sheetFormula = { "r": 12, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2150,7 +2150,7 @@ const sheetFormula = { "r": 12, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2163,7 +2163,7 @@ const sheetFormula = { "r": 12, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2176,7 +2176,7 @@ const sheetFormula = { "r": 13, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2189,7 +2189,7 @@ const sheetFormula = { "r": 13, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2202,7 +2202,7 @@ const sheetFormula = { "r": 13, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2221,7 +2221,7 @@ const sheetFormula = { "t": "g" }, "m": "Match", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2240,7 +2240,7 @@ const sheetFormula = { "t": "g" }, "m": "Physical", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2259,7 +2259,7 @@ const sheetFormula = { "t": "g" }, "m": "Chemistry", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2278,7 +2278,7 @@ const sheetFormula = { "t": "g" }, "m": "Alex", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2297,7 +2297,7 @@ const sheetFormula = { "t": "g" }, "m": "Sum", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2310,7 +2310,7 @@ const sheetFormula = { "r": 13, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2323,7 +2323,7 @@ const sheetFormula = { "r": 13, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2336,7 +2336,7 @@ const sheetFormula = { "r": 13, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2349,7 +2349,7 @@ const sheetFormula = { "r": 14, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2362,7 +2362,7 @@ const sheetFormula = { "r": 14, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2381,7 +2381,7 @@ const sheetFormula = { "t": "g" }, "m": "Alice", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2399,7 +2399,7 @@ const sheetFormula = { "fa": "General", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2418,7 +2418,7 @@ const sheetFormula = { "fa": "General", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2438,7 +2438,7 @@ const sheetFormula = { "t": "n" }, "m": "53", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2457,7 +2457,7 @@ const sheetFormula = { "t": "n" }, "m": "43", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2474,7 +2474,7 @@ const sheetFormula = { "fa": "General", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2490,7 +2490,7 @@ const sheetFormula = { "r": 14, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2503,7 +2503,7 @@ const sheetFormula = { "r": 14, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2516,7 +2516,7 @@ const sheetFormula = { "r": 14, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2529,7 +2529,7 @@ const sheetFormula = { "r": 15, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2542,7 +2542,7 @@ const sheetFormula = { "r": 15, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2561,7 +2561,7 @@ const sheetFormula = { "t": "g" }, "m": "John", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2580,7 +2580,7 @@ const sheetFormula = { "t": "n" }, "m": "65", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2599,7 +2599,7 @@ const sheetFormula = { "t": "n" }, "m": "76", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2618,7 +2618,7 @@ const sheetFormula = { "t": "n" }, "m": "65", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2637,7 +2637,7 @@ const sheetFormula = { "t": "n" }, "m": "55", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2654,7 +2654,7 @@ const sheetFormula = { "fa": "General", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2670,7 +2670,7 @@ const sheetFormula = { "r": 15, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2687,7 +2687,7 @@ const sheetFormula = { "r": 15, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2700,7 +2700,7 @@ const sheetFormula = { "r": 15, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2713,7 +2713,7 @@ const sheetFormula = { "r": 16, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2726,7 +2726,7 @@ const sheetFormula = { "r": 16, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2745,7 +2745,7 @@ const sheetFormula = { "t": "g" }, "m": "Bob", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2764,7 +2764,7 @@ const sheetFormula = { "t": "n" }, "m": "55", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2783,7 +2783,7 @@ const sheetFormula = { "t": "n" }, "m": "70", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2802,7 +2802,7 @@ const sheetFormula = { "t": "n" }, "m": "64", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2821,7 +2821,7 @@ const sheetFormula = { "t": "n" }, "m": "54", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2840,7 +2840,7 @@ const sheetFormula = { "t": "n" }, "m": "152", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2854,7 +2854,7 @@ const sheetFormula = { "r": 16, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2867,7 +2867,7 @@ const sheetFormula = { "r": 16, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2880,7 +2880,7 @@ const sheetFormula = { "r": 16, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2893,7 +2893,7 @@ const sheetFormula = { "r": 17, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2906,7 +2906,7 @@ const sheetFormula = { "r": 17, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2925,7 +2925,7 @@ const sheetFormula = { "t": "g" }, "m": "Jack", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2944,7 +2944,7 @@ const sheetFormula = { "t": "n" }, "m": "89", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2963,7 +2963,7 @@ const sheetFormula = { "t": "n" }, "m": "77", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2982,7 +2982,7 @@ const sheetFormula = { "t": "n" }, "m": "73", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3001,7 +3001,7 @@ const sheetFormula = { "t": "n" }, "m": "73", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3020,7 +3020,7 @@ const sheetFormula = { "t": "n" }, "m": "541", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3034,7 +3034,7 @@ const sheetFormula = { "r": 17, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3047,7 +3047,7 @@ const sheetFormula = { "r": 17, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3060,7 +3060,7 @@ const sheetFormula = { "r": 17, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3073,7 +3073,7 @@ const sheetFormula = { "r": 18, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3086,7 +3086,7 @@ const sheetFormula = { "r": 18, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3099,7 +3099,7 @@ const sheetFormula = { "r": 18, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3112,7 +3112,7 @@ const sheetFormula = { "r": 18, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3125,7 +3125,7 @@ const sheetFormula = { "r": 18, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3138,7 +3138,7 @@ const sheetFormula = { "r": 18, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3151,7 +3151,7 @@ const sheetFormula = { "r": 18, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3164,7 +3164,7 @@ const sheetFormula = { "r": 18, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3177,7 +3177,7 @@ const sheetFormula = { "r": 18, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3190,7 +3190,7 @@ const sheetFormula = { "r": 18, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3203,7 +3203,7 @@ const sheetFormula = { "r": 18, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3216,7 +3216,7 @@ const sheetFormula = { "r": 19, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3229,7 +3229,7 @@ const sheetFormula = { "r": 19, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3248,7 +3248,7 @@ const sheetFormula = { "t": "g" }, "m": "Search", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3312,7 +3312,7 @@ const sheetFormula = { "r": 19, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3325,7 +3325,7 @@ const sheetFormula = { "r": 19, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3338,7 +3338,7 @@ const sheetFormula = { "r": 19, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3351,7 +3351,7 @@ const sheetFormula = { "r": 20, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3364,7 +3364,7 @@ const sheetFormula = { "r": 20, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3383,7 +3383,7 @@ const sheetFormula = { "t": "g" }, "m": "apple", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3402,7 +3402,7 @@ const sheetFormula = { "t": "g" }, "m": "apple", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3415,7 +3415,7 @@ const sheetFormula = { "r": 20, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3428,7 +3428,7 @@ const sheetFormula = { "r": 20, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3445,7 +3445,7 @@ const sheetFormula = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3500,7 +3500,7 @@ const sheetFormula = { "r": 21, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3513,7 +3513,7 @@ const sheetFormula = { "r": 21, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3532,7 +3532,7 @@ const sheetFormula = { "t": "g" }, "m": "banana", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3551,7 +3551,7 @@ const sheetFormula = { "t": "g" }, "m": "pear", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3564,7 +3564,7 @@ const sheetFormula = { "r": 21, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3577,7 +3577,7 @@ const sheetFormula = { "r": 21, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3590,7 +3590,7 @@ const sheetFormula = { "r": 21, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3603,7 +3603,7 @@ const sheetFormula = { "r": 21, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3616,7 +3616,7 @@ const sheetFormula = { "r": 21, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3629,7 +3629,7 @@ const sheetFormula = { "r": 21, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3642,7 +3642,7 @@ const sheetFormula = { "r": 21, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3655,7 +3655,7 @@ const sheetFormula = { "r": 22, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3668,7 +3668,7 @@ const sheetFormula = { "r": 22, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3687,7 +3687,7 @@ const sheetFormula = { "t": "g" }, "m": "pear", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3706,7 +3706,7 @@ const sheetFormula = { "t": "g" }, "m": "potato", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3719,7 +3719,7 @@ const sheetFormula = { "r": 22, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3732,7 +3732,7 @@ const sheetFormula = { "r": 22, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3751,7 +3751,7 @@ const sheetFormula = { "t": "g" }, "m": "ArrayFormula Result:", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3785,7 +3785,7 @@ const sheetFormula = { "t": "g" }, "m": "dumpling", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3799,7 +3799,7 @@ const sheetFormula = { "r": 22, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3816,7 +3816,7 @@ const sheetFormula = { "r": 22, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3833,7 +3833,7 @@ const sheetFormula = { "r": 23, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3846,7 +3846,7 @@ const sheetFormula = { "r": 23, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3865,7 +3865,7 @@ const sheetFormula = { "t": "g" }, "m": "tomato", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3884,7 +3884,7 @@ const sheetFormula = { "t": "g" }, "m": "potato", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3897,7 +3897,7 @@ const sheetFormula = { "r": 23, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3910,7 +3910,7 @@ const sheetFormula = { "r": 23, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3929,7 +3929,7 @@ const sheetFormula = { "t": "g" }, "m": "NomalFormula Result:", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3961,7 +3961,7 @@ const sheetFormula = { "fa": "General", "t": "b" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3977,7 +3977,7 @@ const sheetFormula = { "r": 23, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3994,7 +3994,7 @@ const sheetFormula = { "r": 23, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4007,7 +4007,7 @@ const sheetFormula = { "r": 24, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4020,7 +4020,7 @@ const sheetFormula = { "r": 24, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4039,7 +4039,7 @@ const sheetFormula = { "t": "g" }, "m": "potato", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4058,7 +4058,7 @@ const sheetFormula = { "t": "g" }, "m": "dumpling", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4071,7 +4071,7 @@ const sheetFormula = { "r": 24, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4084,7 +4084,7 @@ const sheetFormula = { "r": 24, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4097,7 +4097,7 @@ const sheetFormula = { "r": 24, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4110,7 +4110,7 @@ const sheetFormula = { "r": 24, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4123,7 +4123,7 @@ const sheetFormula = { "r": 24, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4140,7 +4140,7 @@ const sheetFormula = { "r": 24, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4153,7 +4153,7 @@ const sheetFormula = { "r": 24, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4166,7 +4166,7 @@ const sheetFormula = { "r": 25, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4179,7 +4179,7 @@ const sheetFormula = { "r": 25, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4198,7 +4198,7 @@ const sheetFormula = { "t": "g" }, "m": "cake", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4211,7 +4211,7 @@ const sheetFormula = { "r": 25, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4224,7 +4224,7 @@ const sheetFormula = { "r": 25, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4237,7 +4237,7 @@ const sheetFormula = { "r": 25, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4250,7 +4250,7 @@ const sheetFormula = { "r": 25, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4263,7 +4263,7 @@ const sheetFormula = { "r": 25, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4276,7 +4276,7 @@ const sheetFormula = { "r": 25, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4289,7 +4289,7 @@ const sheetFormula = { "r": 25, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4302,7 +4302,7 @@ const sheetFormula = { "r": 25, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4315,7 +4315,7 @@ const sheetFormula = { "r": 26, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4328,7 +4328,7 @@ const sheetFormula = { "r": 26, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4347,7 +4347,7 @@ const sheetFormula = { "t": "g" }, "m": "noodel", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4360,7 +4360,7 @@ const sheetFormula = { "r": 26, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4373,7 +4373,7 @@ const sheetFormula = { "r": 26, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4386,7 +4386,7 @@ const sheetFormula = { "r": 26, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4399,7 +4399,7 @@ const sheetFormula = { "r": 26, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4412,7 +4412,7 @@ const sheetFormula = { "r": 26, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4425,7 +4425,7 @@ const sheetFormula = { "r": 26, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4438,7 +4438,7 @@ const sheetFormula = { "r": 26, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4451,7 +4451,7 @@ const sheetFormula = { "r": 26, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4464,7 +4464,7 @@ const sheetFormula = { "r": 27, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4477,7 +4477,7 @@ const sheetFormula = { "r": 27, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4490,7 +4490,7 @@ const sheetFormula = { "r": 27, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4503,7 +4503,7 @@ const sheetFormula = { "r": 27, "c": 3, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4516,7 +4516,7 @@ const sheetFormula = { "r": 27, "c": 4, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4529,7 +4529,7 @@ const sheetFormula = { "r": 27, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4542,7 +4542,7 @@ const sheetFormula = { "r": 27, "c": 6, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4555,7 +4555,7 @@ const sheetFormula = { "r": 27, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4568,7 +4568,7 @@ const sheetFormula = { "r": 27, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4581,7 +4581,7 @@ const sheetFormula = { "r": 27, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4594,7 +4594,7 @@ const sheetFormula = { "r": 27, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4607,7 +4607,7 @@ const sheetFormula = { "r": 28, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4620,7 +4620,7 @@ const sheetFormula = { "r": 28, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4639,7 +4639,7 @@ const sheetFormula = { "t": "g" }, "m": "Statistics", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4703,7 +4703,7 @@ const sheetFormula = { "r": 28, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4716,7 +4716,7 @@ const sheetFormula = { "r": 28, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4729,7 +4729,7 @@ const sheetFormula = { "r": 28, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4742,7 +4742,7 @@ const sheetFormula = { "r": 29, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4755,7 +4755,7 @@ const sheetFormula = { "r": 29, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4774,7 +4774,7 @@ const sheetFormula = { "t": "g" }, "m": "Product", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4793,7 +4793,7 @@ const sheetFormula = { "t": "g" }, "m": "Salesman", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4812,7 +4812,7 @@ const sheetFormula = { "t": "g" }, "m": "Units Sold", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4825,7 +4825,7 @@ const sheetFormula = { "r": 29, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4844,7 +4844,7 @@ const sheetFormula = { "t": "g" }, "m": "Summing Sales: Faxes Sold By Brown", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4881,7 +4881,7 @@ const sheetFormula = { "r": 29, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4894,7 +4894,7 @@ const sheetFormula = { "r": 29, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4907,7 +4907,7 @@ const sheetFormula = { "r": 30, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4920,7 +4920,7 @@ const sheetFormula = { "r": 30, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4939,7 +4939,7 @@ const sheetFormula = { "t": "g" }, "m": "Fax", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4958,7 +4958,7 @@ const sheetFormula = { "t": "g" }, "m": "Brown", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4977,7 +4977,7 @@ const sheetFormula = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -4990,7 +4990,7 @@ const sheetFormula = { "r": 30, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5009,7 +5009,7 @@ const sheetFormula = { "t": "n" }, "m": "61", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5023,7 +5023,7 @@ const sheetFormula = { "r": 30, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5036,7 +5036,7 @@ const sheetFormula = { "r": 30, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5049,7 +5049,7 @@ const sheetFormula = { "r": 30, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5062,7 +5062,7 @@ const sheetFormula = { "r": 30, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5075,7 +5075,7 @@ const sheetFormula = { "r": 31, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5088,7 +5088,7 @@ const sheetFormula = { "r": 31, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5107,7 +5107,7 @@ const sheetFormula = { "t": "g" }, "m": "Phone", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5126,7 +5126,7 @@ const sheetFormula = { "t": "g" }, "m": "Smith", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5145,7 +5145,7 @@ const sheetFormula = { "t": "n" }, "m": "10", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5158,7 +5158,7 @@ const sheetFormula = { "r": 31, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5177,7 +5177,7 @@ const sheetFormula = { "t": "g" }, "m": "Logical AND (Faxes And Brown)", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5214,7 +5214,7 @@ const sheetFormula = { "r": 31, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5227,7 +5227,7 @@ const sheetFormula = { "r": 31, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5240,7 +5240,7 @@ const sheetFormula = { "r": 32, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5253,7 +5253,7 @@ const sheetFormula = { "r": 32, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5272,7 +5272,7 @@ const sheetFormula = { "t": "g" }, "m": "Fax", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5291,7 +5291,7 @@ const sheetFormula = { "t": "g" }, "m": "Jones", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5310,7 +5310,7 @@ const sheetFormula = { "t": "n" }, "m": "20", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5323,7 +5323,7 @@ const sheetFormula = { "r": 32, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5342,7 +5342,7 @@ const sheetFormula = { "t": "n" }, "m": "2", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5356,7 +5356,7 @@ const sheetFormula = { "r": 32, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5369,7 +5369,7 @@ const sheetFormula = { "r": 32, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5382,7 +5382,7 @@ const sheetFormula = { "r": 32, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5395,7 +5395,7 @@ const sheetFormula = { "r": 32, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5408,7 +5408,7 @@ const sheetFormula = { "r": 33, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5421,7 +5421,7 @@ const sheetFormula = { "r": 33, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5440,7 +5440,7 @@ const sheetFormula = { "t": "g" }, "m": "Fax", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5459,7 +5459,7 @@ const sheetFormula = { "t": "g" }, "m": "Smith", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5478,7 +5478,7 @@ const sheetFormula = { "t": "n" }, "m": "30", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5491,7 +5491,7 @@ const sheetFormula = { "r": 33, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5510,7 +5510,7 @@ const sheetFormula = { "t": "g" }, "m": "Logical OR (Faxes Or Jones)", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5547,7 +5547,7 @@ const sheetFormula = { "r": 33, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5560,7 +5560,7 @@ const sheetFormula = { "r": 33, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5573,7 +5573,7 @@ const sheetFormula = { "r": 34, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5586,7 +5586,7 @@ const sheetFormula = { "r": 34, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5605,7 +5605,7 @@ const sheetFormula = { "t": "g" }, "m": "Phone", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5624,7 +5624,7 @@ const sheetFormula = { "t": "g" }, "m": "Jones", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5643,7 +5643,7 @@ const sheetFormula = { "t": "n" }, "m": "40", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5656,7 +5656,7 @@ const sheetFormula = { "r": 34, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5675,7 +5675,7 @@ const sheetFormula = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5689,7 +5689,7 @@ const sheetFormula = { "r": 34, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5702,7 +5702,7 @@ const sheetFormula = { "r": 34, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5715,7 +5715,7 @@ const sheetFormula = { "r": 34, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5728,7 +5728,7 @@ const sheetFormula = { "r": 34, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5741,7 +5741,7 @@ const sheetFormula = { "r": 35, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5754,7 +5754,7 @@ const sheetFormula = { "r": 35, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5773,7 +5773,7 @@ const sheetFormula = { "t": "g" }, "m": "PC", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5792,7 +5792,7 @@ const sheetFormula = { "t": "g" }, "m": "Smith", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5811,7 +5811,7 @@ const sheetFormula = { "t": "n" }, "m": "50", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5824,7 +5824,7 @@ const sheetFormula = { "r": 35, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5843,7 +5843,7 @@ const sheetFormula = { "t": "g" }, "m": "Logical XOR (Fax Or Jones but not both)", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5880,7 +5880,7 @@ const sheetFormula = { "r": 35, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5893,7 +5893,7 @@ const sheetFormula = { "r": 35, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5906,7 +5906,7 @@ const sheetFormula = { "r": 36, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5919,7 +5919,7 @@ const sheetFormula = { "r": 36, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5938,7 +5938,7 @@ const sheetFormula = { "t": "g" }, "m": "Fax", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5957,7 +5957,7 @@ const sheetFormula = { "t": "g" }, "m": "Brown", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5976,7 +5976,7 @@ const sheetFormula = { "t": "n" }, "m": "60", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -5989,7 +5989,7 @@ const sheetFormula = { "r": 36, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6008,7 +6008,7 @@ const sheetFormula = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6022,7 +6022,7 @@ const sheetFormula = { "r": 36, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6035,7 +6035,7 @@ const sheetFormula = { "r": 36, "c": 8, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6048,7 +6048,7 @@ const sheetFormula = { "r": 36, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6061,7 +6061,7 @@ const sheetFormula = { "r": 36, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6074,7 +6074,7 @@ const sheetFormula = { "r": 37, "c": 0, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6087,7 +6087,7 @@ const sheetFormula = { "r": 37, "c": 1, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6106,7 +6106,7 @@ const sheetFormula = { "t": "g" }, "m": "Phone", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6125,7 +6125,7 @@ const sheetFormula = { "t": "g" }, "m": "Davis", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6144,7 +6144,7 @@ const sheetFormula = { "t": "n" }, "m": "70", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6157,7 +6157,7 @@ const sheetFormula = { "r": 37, "c": 5, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6176,7 +6176,7 @@ const sheetFormula = { "t": "g" }, "m": "Logical NAND (All Sales Except Fax And Jones)", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6213,7 +6213,7 @@ const sheetFormula = { "r": 37, "c": 9, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6226,7 +6226,7 @@ const sheetFormula = { "r": 37, "c": 10, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6239,7 +6239,7 @@ const sheetFormula = { "r": 38, "c": 0, "v": { - "bg": "rgb(255, 255, 255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6252,7 +6252,7 @@ const sheetFormula = { "r": 38, "c": 1, "v": { - "bg": "rgb(255, 255, 255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6271,7 +6271,7 @@ const sheetFormula = { "t": "g" }, "m": "PC", - "bg": "rgb(255, 255, 255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6290,7 +6290,7 @@ const sheetFormula = { "t": "g" }, "m": "Jones", - "bg": "rgb(255, 255, 255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6309,7 +6309,7 @@ const sheetFormula = { "t": "n" }, "m": "80", - "bg": "rgb(255, 255, 255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6322,7 +6322,7 @@ const sheetFormula = { "r": 38, "c": 5, "v": { - "bg": "rgb(255, 255, 255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6341,7 +6341,7 @@ const sheetFormula = { "t": "n" }, "m": "1", - "bg": "rgb(255, 255, 255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6355,7 +6355,7 @@ const sheetFormula = { "r": 38, "c": 7, "v": { - "bg": "rgb(255, 255, 255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6368,7 +6368,7 @@ const sheetFormula = { "r": 38, "c": 8, "v": { - "bg": "rgb(255, 255, 255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -6381,7 +6381,7 @@ const sheetFormula = { "r": 38, "c": 9, "v": { - "bg": "rgb(255, 255, 255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, diff --git a/src/demoData/sheetSparkline.js b/src/demoData/sheetSparkline.js index 41bec702b..92d501886 100644 --- a/src/demoData/sheetSparkline.js +++ b/src/demoData/sheetSparkline.js @@ -539,7 +539,7 @@ const sheetSparkline = { "t": "g" }, "m": "Mobile Phone Contrast", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -909,7 +909,7 @@ const sheetSparkline = { "t": "g" }, "m": "Size(inch)", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -928,7 +928,7 @@ const sheetSparkline = { "t": "n" }, "m": "5", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -946,7 +946,7 @@ const sheetSparkline = { "fa": "0.0", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -960,7 +960,7 @@ const sheetSparkline = { "r": 2, "c": 12, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1078,7 +1078,7 @@ const sheetSparkline = { "t": "g" }, "m": "RAM(G)", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1097,7 +1097,7 @@ const sheetSparkline = { "t": "n" }, "m": "3", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1116,7 +1116,7 @@ const sheetSparkline = { "t": "n" }, "m": "1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1129,7 +1129,7 @@ const sheetSparkline = { "r": 3, "c": 12, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1243,7 +1243,7 @@ const sheetSparkline = { "t": "g" }, "m": "Weight(g)", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1262,7 +1262,7 @@ const sheetSparkline = { "t": "n" }, "m": "149", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1281,7 +1281,7 @@ const sheetSparkline = { "t": "n" }, "m": "129", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1294,7 +1294,7 @@ const sheetSparkline = { "r": 4, "c": 12, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1348,7 +1348,7 @@ const sheetSparkline = { "t": "g" }, "m": "My Assets", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1413,7 +1413,7 @@ const sheetSparkline = { "t": "g" }, "m": "Checkbook Register", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -1591,7 +1591,7 @@ const sheetSparkline = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1625,7 +1625,7 @@ const sheetSparkline = { "t": "g" }, "m": "InitialValue", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -1644,7 +1644,7 @@ const sheetSparkline = { "t": "n" }, "m": "815.25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 1, "it": 0, "ff": 0, @@ -1663,7 +1663,7 @@ const sheetSparkline = { "t": "g" }, "m": "Σ", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1678,7 +1678,7 @@ const sheetSparkline = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1721,7 +1721,7 @@ const sheetSparkline = { "t": "g" }, "m": "Savings", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1739,7 +1739,7 @@ const sheetSparkline = { "fa": "\"$\" #", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1753,7 +1753,7 @@ const sheetSparkline = { "r": 8, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1841,7 +1841,7 @@ const sheetSparkline = { "t": "g" }, "m": "12/11/2012", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1875,7 +1875,7 @@ const sheetSparkline = { "t": "g" }, "m": "CVS", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1894,7 +1894,7 @@ const sheetSparkline = { "t": "n" }, "m": "-200.00", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1913,7 +1913,7 @@ const sheetSparkline = { "t": "n" }, "m": "615.25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1926,7 +1926,7 @@ const sheetSparkline = { "r": 8, "c": 11, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -1994,7 +1994,7 @@ const sheetSparkline = { "t": "g" }, "m": "401k", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2012,7 +2012,7 @@ const sheetSparkline = { "fa": "\"$\" #", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2079,7 +2079,7 @@ const sheetSparkline = { "t": "g" }, "m": "12/12/2012", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2113,7 +2113,7 @@ const sheetSparkline = { "t": "g" }, "m": "Bank", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2132,7 +2132,7 @@ const sheetSparkline = { "t": "n" }, "m": "1,000.12", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2151,7 +2151,7 @@ const sheetSparkline = { "t": "n" }, "m": "1,615.37", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2197,7 +2197,7 @@ const sheetSparkline = { "t": "g" }, "m": "Stocks", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2215,7 +2215,7 @@ const sheetSparkline = { "fa": "\"$\" #", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2282,7 +2282,7 @@ const sheetSparkline = { "t": "g" }, "m": "12/13/2012", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2316,7 +2316,7 @@ const sheetSparkline = { "t": "g" }, "m": "Starbucks", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2335,7 +2335,7 @@ const sheetSparkline = { "t": "n" }, "m": "-500.43", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2354,7 +2354,7 @@ const sheetSparkline = { "t": "n" }, "m": "1,114.94", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2400,7 +2400,7 @@ const sheetSparkline = { "t": "g" }, "m": "Sales by State", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2548,7 +2548,7 @@ const sheetSparkline = { "t": "g" }, "m": "Student Grade Statistics", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -2623,7 +2623,7 @@ const sheetSparkline = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2642,7 +2642,7 @@ const sheetSparkline = { "t": "g" }, "m": "Idaho", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2660,7 +2660,7 @@ const sheetSparkline = { "fa": "\"$\" #", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2674,7 +2674,7 @@ const sheetSparkline = { "r": 14, "c": 2, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2890,7 +2890,7 @@ const sheetSparkline = { "t": "g" }, "m": "Montana", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2908,7 +2908,7 @@ const sheetSparkline = { "fa": "\"$\" #", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2951,7 +2951,7 @@ const sheetSparkline = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -2970,7 +2970,7 @@ const sheetSparkline = { "r": 15, "c": 7, "v": { - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3238,7 +3238,7 @@ const sheetSparkline = { "t": "g" }, "m": "Oregon", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3256,7 +3256,7 @@ const sheetSparkline = { "fa": "\"$\" #", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3375,7 +3375,7 @@ const sheetSparkline = { "t": "g" }, "m": "Washington", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3393,7 +3393,7 @@ const sheetSparkline = { "fa": "\"$\" #", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3440,7 +3440,7 @@ const sheetSparkline = { "t": "g" }, "m": "Student 1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3459,7 +3459,7 @@ const sheetSparkline = { "t": "n" }, "m": "70", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3493,7 +3493,7 @@ const sheetSparkline = { "t": "n" }, "m": "90", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3527,7 +3527,7 @@ const sheetSparkline = { "t": "n" }, "m": "51", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3561,7 +3561,7 @@ const sheetSparkline = { "t": "n" }, "m": "211", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3580,7 +3580,7 @@ const sheetSparkline = { "t": "g" }, "m": "Student 2", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3599,7 +3599,7 @@ const sheetSparkline = { "t": "n" }, "m": "99", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3632,7 +3632,7 @@ const sheetSparkline = { "fa": "General", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3667,7 +3667,7 @@ const sheetSparkline = { "t": "n" }, "m": "63", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3701,7 +3701,7 @@ const sheetSparkline = { "t": "n" }, "m": "221", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3718,7 +3718,7 @@ const sheetSparkline = { "fa": "General", "t": "g" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3783,7 +3783,7 @@ const sheetSparkline = { "t": "g" }, "m": "Student 3", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3801,7 +3801,7 @@ const sheetSparkline = { "fa": "General", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3836,7 +3836,7 @@ const sheetSparkline = { "t": "n" }, "m": "128", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3870,7 +3870,7 @@ const sheetSparkline = { "t": "n" }, "m": "74", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3904,7 +3904,7 @@ const sheetSparkline = { "t": "n" }, "m": "291", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -3923,7 +3923,7 @@ const sheetSparkline = { "t": "g" }, "m": "Employee KPI", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 9, @@ -3984,7 +3984,7 @@ const sheetSparkline = { "t": "g" }, "m": "Student 4", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4003,7 +4003,7 @@ const sheetSparkline = { "t": "n" }, "m": "93", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4037,7 +4037,7 @@ const sheetSparkline = { "t": "n" }, "m": "61", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4071,7 +4071,7 @@ const sheetSparkline = { "t": "n" }, "m": "53", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4105,7 +4105,7 @@ const sheetSparkline = { "t": "n" }, "m": "207", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4215,7 +4215,7 @@ const sheetSparkline = { "t": "g" }, "m": "Student 5", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4234,7 +4234,7 @@ const sheetSparkline = { "t": "n" }, "m": "106", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4268,7 +4268,7 @@ const sheetSparkline = { "t": "n" }, "m": "82", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4302,7 +4302,7 @@ const sheetSparkline = { "t": "n" }, "m": "80", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4336,7 +4336,7 @@ const sheetSparkline = { "t": "n" }, "m": "268", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4355,7 +4355,7 @@ const sheetSparkline = { "t": "g" }, "m": "Employee 1", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4374,7 +4374,7 @@ const sheetSparkline = { "t": "n" }, "m": "6", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4392,7 +4392,7 @@ const sheetSparkline = { "fa": "General", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4472,7 +4472,7 @@ const sheetSparkline = { "t": "g" }, "m": "Employee 2", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4491,7 +4491,7 @@ const sheetSparkline = { "t": "n" }, "m": "8", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4510,7 +4510,7 @@ const sheetSparkline = { "t": "n" }, "m": "7", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4556,7 +4556,7 @@ const sheetSparkline = { "t": "g" }, "m": "Employee 3", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4575,7 +4575,7 @@ const sheetSparkline = { "t": "n" }, "m": "6", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4593,7 +4593,7 @@ const sheetSparkline = { "fa": "General", "t": "n" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4627,7 +4627,7 @@ const sheetSparkline = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4642,7 +4642,7 @@ const sheetSparkline = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4657,7 +4657,7 @@ const sheetSparkline = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4672,7 +4672,7 @@ const sheetSparkline = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4687,7 +4687,7 @@ const sheetSparkline = { "v": { "v": null, "m": "", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4705,7 +4705,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4725,7 +4725,7 @@ const sheetSparkline = { "t": "n" }, "m": "12", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4937,7 +4937,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4957,7 +4957,7 @@ const sheetSparkline = { "t": "n" }, "m": "64", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4975,7 +4975,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -4995,7 +4995,7 @@ const sheetSparkline = { "t": "n" }, "m": "54", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5013,7 +5013,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5033,7 +5033,7 @@ const sheetSparkline = { "t": "n" }, "m": "15", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5051,7 +5051,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5071,7 +5071,7 @@ const sheetSparkline = { "t": "n" }, "m": "35", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5098,7 +5098,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5118,7 +5118,7 @@ const sheetSparkline = { "t": "n" }, "m": "67", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5151,7 +5151,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5171,7 +5171,7 @@ const sheetSparkline = { "t": "n" }, "m": "16", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5204,7 +5204,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5224,7 +5224,7 @@ const sheetSparkline = { "t": "n" }, "m": "87", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5266,7 +5266,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5286,7 +5286,7 @@ const sheetSparkline = { "t": "n" }, "m": "64", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5310,7 +5310,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5330,7 +5330,7 @@ const sheetSparkline = { "t": "n" }, "m": "88", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5357,7 +5357,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5377,7 +5377,7 @@ const sheetSparkline = { "t": "n" }, "m": "25", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5395,7 +5395,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5415,7 +5415,7 @@ const sheetSparkline = { "t": "n" }, "m": "96", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5433,7 +5433,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5453,7 +5453,7 @@ const sheetSparkline = { "t": "n" }, "m": "53", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5471,7 +5471,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5491,7 +5491,7 @@ const sheetSparkline = { "t": "n" }, "m": "94", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5509,7 +5509,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5529,7 +5529,7 @@ const sheetSparkline = { "t": "n" }, "m": "23", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5547,7 +5547,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5567,7 +5567,7 @@ const sheetSparkline = { "t": "n" }, "m": "85", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5585,7 +5585,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5605,7 +5605,7 @@ const sheetSparkline = { "t": "n" }, "m": "89", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5623,7 +5623,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5643,7 +5643,7 @@ const sheetSparkline = { "t": "n" }, "m": "8", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5661,7 +5661,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5681,7 +5681,7 @@ const sheetSparkline = { "t": "n" }, "m": "98", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5699,7 +5699,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5719,7 +5719,7 @@ const sheetSparkline = { "t": "n" }, "m": "82", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5737,7 +5737,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5757,7 +5757,7 @@ const sheetSparkline = { "t": "n" }, "m": "79", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5775,7 +5775,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5795,7 +5795,7 @@ const sheetSparkline = { "t": "n" }, "m": "54", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5813,7 +5813,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5833,7 +5833,7 @@ const sheetSparkline = { "t": "n" }, "m": "56", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5851,7 +5851,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5871,7 +5871,7 @@ const sheetSparkline = { "t": "n" }, "m": "10", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5889,7 +5889,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5909,7 +5909,7 @@ const sheetSparkline = { "t": "n" }, "m": "36", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5927,7 +5927,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5947,7 +5947,7 @@ const sheetSparkline = { "t": "n" }, "m": "0", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5965,7 +5965,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -5985,7 +5985,7 @@ const sheetSparkline = { "t": "n" }, "m": "4", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6003,7 +6003,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6023,7 +6023,7 @@ const sheetSparkline = { "t": "n" }, "m": "31", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6041,7 +6041,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6061,7 +6061,7 @@ const sheetSparkline = { "t": "n" }, "m": "19", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6079,7 +6079,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6099,7 +6099,7 @@ const sheetSparkline = { "t": "n" }, "m": "22", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6117,7 +6117,7 @@ const sheetSparkline = { "fa": "yyyy-MM-dd", "t": "d" }, - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, @@ -6137,7 +6137,7 @@ const sheetSparkline = { "t": "n" }, "m": "78", - "bg": "rgba(255,255,255)", + "bg": null, "bl": 0, "it": 0, "ff": 0, diff --git a/src/global/createsheet.js b/src/global/createsheet.js index 2894bb21f..022746d58 100644 --- a/src/global/createsheet.js +++ b/src/global/createsheet.js @@ -15,6 +15,7 @@ export default function luckysheetcreatesheet(colwidth, rowheight, data, cfg, ac Store.visibledatacolumn = []; Store.ch_width = 0; Store.rh_height = 0; + Store.zoomRatio = 1; if(cfg != null){ Store.config = cfg; diff --git a/src/global/draw.js b/src/global/draw.js index 395318d6c..2a2821263 100644 --- a/src/global/draw.js +++ b/src/global/draw.js @@ -37,7 +37,7 @@ function luckysheetDrawgridRowTitle(scrollHeight, drawHeight, offsetTop) { 0, offsetTop , (Store.rowHeaderWidth - 1) , - drawHeight + drawHeight ); luckysheetTableContent.font = luckysheetdefaultFont(); @@ -58,10 +58,11 @@ function luckysheetDrawgridRowTitle(scrollHeight, drawHeight, offsetTop) { luckysheetTableContent.save(); luckysheetTableContent.beginPath(); - luckysheetTableContent.rect(0, offsetTop, Store.rowHeaderWidth -1, drawHeight-2); + luckysheetTableContent.rect(0, offsetTop-1, Store.rowHeaderWidth -1, drawHeight-2); luckysheetTableContent.clip(); let end_r, start_r; + let bodrder05 = 0.5;//Default 0.5 for (let r = dataset_row_st; r <= dataset_row_ed; r++) { if (r == 0) { @@ -81,34 +82,38 @@ function luckysheetDrawgridRowTitle(scrollHeight, drawHeight, offsetTop) { } else { - luckysheetTableContent.fillStyle = "#ffffff"; + let firstOffset = (dataset_row_st==r)?-2:0; + let lastOffset = (dataset_row_ed==r)?-2:0; luckysheetTableContent.fillRect( 0, - (start_r + offsetTop) , + (start_r + offsetTop + firstOffset) , Store.rowHeaderWidth -1, - (end_r - start_r - 1) + (end_r - start_r + 1+lastOffset-firstOffset) ) luckysheetTableContent.fillStyle = "#000000"; //行标题栏序列号 + luckysheetTableContent.save();//save scale before draw text + luckysheetTableContent.scale(Store.zoomRatio,Store.zoomRatio); let textMetrics = getMeasureText(r+1, luckysheetTableContent); //luckysheetTableContent.measureText(r + 1); let horizonAlignPos = (Store.rowHeaderWidth - textMetrics.width) / 2; let verticalAlignPos = (start_r + (end_r - start_r) / 2 + offsetTop) ; - luckysheetTableContent.fillText(r + 1, horizonAlignPos, verticalAlignPos); + luckysheetTableContent.fillText(r + 1, horizonAlignPos/Store.zoomRatio, verticalAlignPos/Store.zoomRatio); + luckysheetTableContent.restore();//restore scale after draw text } //vertical luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( - (Store.rowHeaderWidth - 2 + 0.5) , + (Store.rowHeaderWidth - 2 + bodrder05) , (start_r + offsetTop - 2) ); luckysheetTableContent.lineTo( - (Store.rowHeaderWidth - 2 + 0.5) , + (Store.rowHeaderWidth - 2 + bodrder05) , (end_r + offsetTop - 2) ); luckysheetTableContent.lineWidth = 1; @@ -121,11 +126,11 @@ function luckysheetDrawgridRowTitle(scrollHeight, drawHeight, offsetTop) { luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( -1, - (end_r + offsetTop - 2 + 0.5) + (end_r + offsetTop - 2 + bodrder05) ); luckysheetTableContent.lineTo( (Store.rowHeaderWidth - 1) , - (end_r + offsetTop - 2 + 0.5) + (end_r + offsetTop - 2 + bodrder05) ); // luckysheetTableContent.lineWidth = 1; // luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; @@ -175,9 +180,9 @@ function luckysheetDrawgridColumnTitle(scrollWidth, drawWidth, offsetLeft) { luckysheetTableContent.scale(Store.devicePixelRatio, Store.devicePixelRatio); luckysheetTableContent.clearRect( offsetLeft , - -0.5, + 0, drawWidth , - (Store.columeHeaderHeight - 1.5) + (Store.columeHeaderHeight - 1) ); @@ -198,13 +203,13 @@ function luckysheetDrawgridColumnTitle(scrollWidth, drawWidth, offsetLeft) { luckysheetTableContent.save(); luckysheetTableContent.beginPath(); - luckysheetTableContent.rect(offsetLeft, 0, drawWidth, Store.columeHeaderHeight -1); + luckysheetTableContent.rect(offsetLeft-1, 0, drawWidth, Store.columeHeaderHeight -1); luckysheetTableContent.clip(); // console.log(offsetLeft, 0, drawWidth, Store.columeHeaderHeight -1); let end_c, start_c; - + let bodrder05 = 0.5;//Default 0.5 for (let c = dataset_col_st; c <= dataset_col_ed; c++) { if (c == 0) { start_c = -scrollWidth; @@ -229,6 +234,8 @@ function luckysheetDrawgridColumnTitle(scrollWidth, drawWidth, offsetLeft) { luckysheetTableContent.fillStyle = "#000000"; //列标题栏序列号 + luckysheetTableContent.save();//save scale before draw text + luckysheetTableContent.scale(Store.zoomRatio,Store.zoomRatio); let abc = chatatABC(c); let textMetrics = getMeasureText(abc, luckysheetTableContent); //luckysheetTableContent.measureText(abc); @@ -236,16 +243,17 @@ function luckysheetDrawgridColumnTitle(scrollWidth, drawWidth, offsetLeft) { let horizonAlignPos = Math.round((start_c + (end_c - start_c) / 2 + offsetLeft) - textMetrics.width / 2); let verticalAlignPos = Math.round(Store.columeHeaderHeight / 2 ); - luckysheetTableContent.fillText(abc, horizonAlignPos, verticalAlignPos); + luckysheetTableContent.fillText(abc, horizonAlignPos/Store.zoomRatio, verticalAlignPos/Store.zoomRatio); + luckysheetTableContent.restore();//restore scale after draw text //列标题栏竖线 vertical luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( - (end_c + offsetLeft - 2 + 0.5) , - 0.5 + (end_c + offsetLeft - 2 + bodrder05) , + 0 ); luckysheetTableContent.lineTo( - (end_c + offsetLeft - 2 + 0.5) , + (end_c + offsetLeft - 2 + bodrder05) , (Store.columeHeaderHeight - 2) ); luckysheetTableContent.lineWidth = 1; @@ -257,11 +265,11 @@ function luckysheetDrawgridColumnTitle(scrollWidth, drawWidth, offsetLeft) { luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (start_c + offsetLeft - 1), - (Store.columeHeaderHeight - 2 + 0.5) + (Store.columeHeaderHeight - 2 + bodrder05) ); luckysheetTableContent.lineTo( (end_c + offsetLeft - 1), - (Store.columeHeaderHeight - 2 + 0.5) + (Store.columeHeaderHeight - 2 + bodrder05) ); // luckysheetTableContent.lineWidth = 1; @@ -356,8 +364,8 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of luckysheetTableContent.clearRect( 0, 0, - Store.luckysheetTableContentHW[0] , - Store.luckysheetTableContentHW[1] + Store.luckysheetTableContentHW[0], + Store.luckysheetTableContentHW[1] ); //表格渲染区域 起止行列下标 @@ -434,7 +442,7 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of (offsetLeft - 1) , (offsetTop - 1) , (fill_col_ed - scrollWidth) , - (fill_row_ed - scrollHeight) + (fill_row_ed - scrollHeight) ); luckysheetTableContent.font = luckysheetdefaultFont(); // luckysheetTableContent.textBaseline = "top"; @@ -444,6 +452,8 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of let cellupdate = []; let mergeCache = {}; let borderOffset = {}; + + let bodrder05 = 0.5;//Default 0.5 for (let r = dataset_row_st; r <= dataset_row_ed; r++) { let start_r; @@ -571,43 +581,15 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of } if(Store.flowdata[r][c] == null){ //空单元格 - nullCellRender(r, c, start_r, start_c, end_r, end_c,luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth); + nullCellRender(r, c, start_r, start_c, end_r, end_c,luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth,bodrder05); } else{ let cell = Store.flowdata[r][c]; - let value = null, er = r, ec = c, end_ec = end_c; + let value = null; if((typeof cell == "object") && "mc" in cell){ mcArr.push(cellupdate[cud]); - - let margeMaindata = cell["mc"]; - value = getcellvalue(margeMaindata.r, margeMaindata.c, null, "m"); - - if(value == null){ - value = getcellvalue(margeMaindata.r, margeMaindata.c); - } - - r = margeMaindata.r; - c = margeMaindata.c; - - er += margeMaindata.rs; - ec += margeMaindata.rc; - - if (c == 0) { - start_c = -scrollWidth; - } - else { - start_c = Store.visibledatacolumn[c - 1] - scrollWidth; - } - - if (r == 0) { - start_r = -scrollHeight - 1; - } - else { - start_r = Store.visibledatarow[r - 1] - scrollHeight - 1; - } - - end_ec = Store.visibledatacolumn[ec] - scrollWidth; + // continue; } else{ value = getcellvalue(r, c, null, "m"); @@ -617,15 +599,15 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of } if(value == null || value.toString().length == 0){ - nullCellRender(r, c, start_r, start_c, end_r, end_c,luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth); + nullCellRender(r, c, start_r, start_c, end_r, end_c,luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth,bodrder05); //sparklines渲染 let borderfix = menuButton.borderfix(Store.flowdata, r, c); let cellsize = [ (start_c + offsetLeft + borderfix[0]), - (start_r + offsetTop + 0.5 + borderfix[1]), + (start_r + offsetTop + borderfix[1]), (end_c - start_c - 3 + borderfix[2]), - (end_r - start_r - 3 - 0.5 + borderfix[3]) + (end_r - start_r - 3 - 1 + borderfix[3]) ]; sparklinesRender(r, c, cellsize[0], cellsize[1], "luckysheetTableContent", luckysheetTableContent); } @@ -634,7 +616,7 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of value = dynamicArray_compute[r + "_" + c].v; } - cellRender(r, c, start_r, start_c, end_r, end_c, value,luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth); + cellRender(r, c, start_r, start_c, end_r, end_c, value,luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth,bodrder05); } } } @@ -646,12 +628,12 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of c = item.c, start_r = item.start_r, start_c = item.start_c, - end_r = item.end_r, - end_c = item.end_c; + end_r = item.end_r-1, + end_c = item.end_c-1; let firstcolumnlen = item.firstcolumnlen; let cell = Store.flowdata[r][c]; - let value = null, er = r, ec = c, end_ec = end_c; + let value = null; let margeMaindata = cell["mc"]; value = getcellvalue(margeMaindata.r, margeMaindata.c, null, "m"); @@ -663,9 +645,6 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of r = margeMaindata.r; c = margeMaindata.c; - er += margeMaindata.rs; - ec += margeMaindata.rc; - if (c == 0) { start_c = -scrollWidth; } @@ -680,18 +659,19 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of start_r = Store.visibledatarow[r - 1] - scrollHeight - 1; } - end_ec = Store.visibledatacolumn[ec] - scrollWidth; + end_r = Store.visibledatarow[r+margeMaindata.rs-1] - scrollHeight; + end_c = Store.visibledatacolumn[c+margeMaindata.cs-1] - scrollWidth; if(value == null || value.toString().length == 0){ - nullCellRender(r, c, start_r, start_c, end_r, end_c,luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth); + nullCellRender(r, c, start_r, start_c, end_r, end_c,luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth,bodrder05, true); //sparklines渲染 let borderfix = menuButton.borderfix(Store.flowdata, r, c); let cellsize = [ (start_c + offsetLeft + borderfix[0]), - (start_r + offsetTop + 0.5 + borderfix[1]), + (start_r + offsetTop + borderfix[1]), (end_c - start_c - 3 + borderfix[2]), - (end_r - start_r - 3 - 0.5 + borderfix[3]) + (end_r - start_r - 3 - 1 + borderfix[3]) ]; sparklinesRender(r, c, cellsize[0], cellsize[1], "luckysheetTableContent", luckysheetTableContent); } @@ -700,7 +680,7 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of value = dynamicArray_compute[r + "_" + c].v; } - cellRender(r, c, start_r, start_c, end_r, end_c, value, luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth); + cellRender(r, c, start_r, start_c, end_r, end_c, value, luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth,bodrder05, true); } } @@ -727,17 +707,18 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of let end_c = Store.visibledatacolumn[c] - scrollWidth; + //数据透视表\ if (!!Store.luckysheetcurrentisPivotTable && pivotTable.drawPivotTable) { if ((c == 0 || c == 5) && r <= 11) { luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( - (end_c - 2 + 0.5 + offsetLeft), + (end_c - 2 + bodrder05 + offsetLeft), (start_r + offsetTop) ); luckysheetTableContent.lineTo( - (end_c - 2 + 0.5 + offsetLeft), - (end_r - 2 + 0.5 + offsetTop) + (end_c - 2 + bodrder05 + offsetLeft), + (end_r - 2 + bodrder05 + offsetTop) ); luckysheetTableContent.lineWidth = 1; luckysheetTableContent.strokeStyle = "#000000"; @@ -749,11 +730,11 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (start_c - 1 + offsetLeft), - (end_r - 2 + 0.5 + offsetTop) + (end_r - 2 + bodrder05 + offsetTop) ); luckysheetTableContent.lineTo( - (end_c - 2 + 0.5 + offsetLeft), - (end_r - 2 + 0.5 + offsetTop) + (end_c - 2 + bodrder05 + offsetLeft), + (end_r - 2 + bodrder05 + offsetTop) ); luckysheetTableContent.lineWidth = 1; luckysheetTableContent.strokeStyle = "#000000"; @@ -778,12 +759,12 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of if (c < pivotTable.pivotTableBoundary[1] && r < pivotTable.pivotTableBoundary[0]) { luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( - (end_c - 2 + 0.5 + offsetLeft), + (end_c - 2 + bodrder05 + offsetLeft), (start_r + offsetTop) ); luckysheetTableContent.lineTo( - (end_c - 2 + 0.5 + offsetLeft), - (end_r - 2 + 0.5 + offsetTop) + (end_c - 2 + bodrder05 + offsetLeft), + (end_r - 2 + bodrder05 + offsetTop) ); luckysheetTableContent.lineWidth = 1; luckysheetTableContent.strokeStyle = "#000000"; @@ -793,11 +774,11 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (start_c - 1 + offsetLeft), - (end_r - 2 + 0.5 + offsetTop) + (end_r - 2 + bodrder05 + offsetTop) ); luckysheetTableContent.lineTo( (end_c - 2 + offsetLeft), - (end_r - 2 + 0.5 + offsetTop) + (end_r - 2 + bodrder05 + offsetTop) ); luckysheetTableContent.lineWidth = 1; luckysheetTableContent.strokeStyle = "#000000"; @@ -814,10 +795,10 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of let borderLeftRender = function(style, color, start_r, start_c, end_r, end_c, offsetLeft, offsetTop, canvas){ let linetype = style; - let m_st = (start_c - 2 + 0.5 + offsetLeft); - let m_ed = (start_r + offsetTop); - let line_st = (start_c - 2 + 0.5 + offsetLeft); - let line_ed = (end_r - 2 + 0.5 + offsetTop); + let m_st = (start_c - 2 + bodrder05 + offsetLeft); + let m_ed = (start_r + offsetTop-1); + let line_st = (start_c - 2 + bodrder05 + offsetLeft); + let line_ed = (end_r - 2 + bodrder05 + offsetTop); canvas.save(); menuButton.setLineDash(canvas, linetype, "v", m_st, m_ed, line_st, line_ed); @@ -831,10 +812,10 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of let borderRightRender = function(style, color, start_r, start_c, end_r, end_c, offsetLeft, offsetTop, canvas){ let linetype = style; - let m_st = (end_c - 2 + 0.5 + offsetLeft); - let m_ed = (start_r + offsetTop); - let line_st = (end_c - 2 + 0.5 + offsetLeft); - let line_ed = (end_r - 2 + 0.5 + offsetTop); + let m_st = (end_c - 2 + bodrder05 + offsetLeft); + let m_ed = (start_r + offsetTop-1); + let line_st = (end_c - 2 + bodrder05 + offsetLeft); + let line_ed = (end_r - 2 + bodrder05 + offsetTop); canvas.save(); menuButton.setLineDash(canvas, linetype, "v", m_st, m_ed, line_st, line_ed); @@ -848,10 +829,10 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of let borderBottomRender = function(style, color, start_r, start_c, end_r, end_c, offsetLeft, offsetTop, canvas){ let linetype = style; - let m_st = (start_c - 2 + offsetLeft); - let m_ed = (end_r - 2 + 0.5 + offsetTop); - let line_st = (end_c - 2 + 0.5 + offsetLeft); - let line_ed = (end_r - 2 + 0.5 + offsetTop); + let m_st = (start_c - 2 + bodrder05 + offsetLeft); + let m_ed = (end_r - 2 + bodrder05 + offsetTop); + let line_st = (end_c - 2 + bodrder05 + offsetLeft); + let line_ed = (end_r - 2 + bodrder05 + offsetTop); canvas.save(); menuButton.setLineDash(canvas, linetype, "h", m_st, m_ed, line_st, line_ed); @@ -865,10 +846,10 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of let borderTopRender = function(style, color, start_r, start_c, end_r, end_c, offsetLeft, offsetTop, canvas){ let linetype = style; - let m_st = (start_c - 2 + offsetLeft); - let m_ed = (start_r - 1 + 0.5 + offsetTop); - let line_st = (end_c - 2 + 0.5 + offsetLeft); - let line_ed = (start_r - 1 + 0.5 + offsetTop); + let m_st = (start_c - 2 + bodrder05 + offsetLeft); + let m_ed = (start_r - 1 + bodrder05 + offsetTop); + let line_st = (end_c - 2 + bodrder05 + offsetLeft); + let line_ed = (start_r - 1 + bodrder05 + offsetTop); canvas.save(); menuButton.setLineDash(canvas, linetype, "h", m_st, m_ed, line_st, line_ed); @@ -919,10 +900,10 @@ function luckysheetDrawMain(scrollWidth, scrollHeight, drawWidth, drawHeight, of //渲染表格时有尾列时,清除右边灰色区域,防止表格有值溢出 if(dataset_col_ed == Store.visibledatacolumn.length - 1){ luckysheetTableContent.clearRect( - (fill_col_ed - scrollWidth + offsetLeft - 1) , - (offsetTop - 1) , + (fill_col_ed - scrollWidth + offsetLeft) - 1 , + (offsetTop) - 1 , (Store.ch_width - Store.visibledatacolumn[dataset_col_ed]) , - (fill_row_ed - scrollHeight) + (fill_row_ed - scrollHeight) ); } @@ -986,32 +967,40 @@ let sparklinesRender = function(r, c, offsetX, offsetY, canvasid, ctx){ } //空白单元格渲染 -let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTableContent,af_compute,cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth){ +let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTableContent,af_compute,cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth,bodrder05,isMerge){ let checksAF = alternateformat.checksAF(r, c, af_compute); //交替颜色 let checksCF = conditionformat.checksCF(r, c, cf_compute); //条件格式 let borderfix = menuButton.borderfix(Store.flowdata, r, c); //背景色 - luckysheetTableContent.fillStyle = menuButton.checkstatus(Store.flowdata, r, c , "bg"); + let fillStyle = menuButton.checkstatus(Store.flowdata, r, c , "bg"); if(checksAF != null && checksAF[1] != null){//交替颜色 - luckysheetTableContent.fillStyle = checksAF[1]; + fillStyle = checksAF[1]; } if(checksCF != null && checksCF["cellColor"] != null){//条件格式 - luckysheetTableContent.fillStyle = checksCF["cellColor"]; + fillStyle = checksCF["cellColor"]; } if(Store.flowdata[r][c] != null && Store.flowdata[r][c].tc != null){//标题色 - luckysheetTableContent.fillStyle = Store.flowdata[r][c].tc; + fillStyle = Store.flowdata[r][c].tc; } + if(fillStyle==null){ + luckysheetTableContent.fillStyle = "rgba(255,255,255)"; + } + else{ + luckysheetTableContent.fillStyle = fillStyle; + } + + let cellsize = [ (start_c + offsetLeft + borderfix[0]), - (start_r + offsetTop + 1 + borderfix[1]), - (end_c - start_c - 3 + borderfix[2]), - (end_r - start_r - 3 - 0.5 + borderfix[3]) + (start_r + offsetTop + borderfix[1]), + (end_c - start_c + borderfix[2]-(!!isMerge?1:0)), + (end_r - start_r + borderfix[3]) ]; luckysheetTableContent.fillRect(cellsize[0], cellsize[1], cellsize[2], cellsize[3]); @@ -1036,10 +1025,11 @@ let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTab //若单元格有批注 if(Store.flowdata[r][c] != null && Store.flowdata[r][c].ps != null){ + let ps_w = 5*Store.zoomRatio, ps_h = 5*Store.zoomRatio; luckysheetTableContent.beginPath(); - luckysheetTableContent.moveTo( (end_c + offsetLeft - 6), (start_r + offsetTop)); + luckysheetTableContent.moveTo( (end_c + offsetLeft - 1- ps_w), (start_r + offsetTop)); luckysheetTableContent.lineTo( (end_c + offsetLeft - 1), (start_r + offsetTop)); - luckysheetTableContent.lineTo( (end_c + offsetLeft - 1), (start_r + offsetTop + 5)); + luckysheetTableContent.lineTo( (end_c + offsetLeft - 1), (start_r + offsetTop + ps_h)); luckysheetTableContent.fillStyle = "#FC6666"; luckysheetTableContent.fill(); luckysheetTableContent.closePath(); @@ -1065,14 +1055,14 @@ let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTab //即溢出单元格跨此单元格,此单元格不绘制右边框 if(!cellOverflow_colInObj.colIn || cellOverflow_colInObj.colLast){ //右边框 - if(!Store.luckysheetcurrentisPivotTable){ + if(!Store.luckysheetcurrentisPivotTable && !fillStyle){ luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( - (end_c + offsetLeft - 2 + 0.5), + (end_c + offsetLeft - 2 + bodrder05), (start_r + offsetTop - 2) ); luckysheetTableContent.lineTo( - (end_c + offsetLeft - 2 + 0.5), + (end_c + offsetLeft - 2 + bodrder05), (end_r + offsetTop - 2) ); luckysheetTableContent.lineWidth = 1; @@ -1084,15 +1074,15 @@ let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTab } //下边框 - if(!Store.luckysheetcurrentisPivotTable){ + if(!Store.luckysheetcurrentisPivotTable && !fillStyle){ luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (start_c + offsetLeft - 2), - (end_r + offsetTop - 2 + 0.5) + (end_r + offsetTop - 2 + bodrder05) ); luckysheetTableContent.lineTo( (end_c + offsetLeft - 2), - (end_r + offsetTop - 2 + 0.5) + (end_r + offsetTop - 2 + bodrder05) ); luckysheetTableContent.lineWidth = 1; @@ -1103,7 +1093,7 @@ let nullCellRender = function(r, c, start_r, start_c, end_r, end_c,luckysheetTab } //非空白单元格渲染 -let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth){ +let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckysheetTableContent,af_compute, cf_compute,offsetLeft,offsetTop,dynamicArray_compute,cellOverflowMap, dataset_col_st, dataset_col_ed,scrollHeight,scrollWidth,bodrder05,isMerge){ let cell = Store.flowdata[r][c]; let cellWidth = end_c - start_c - 2; @@ -1130,35 +1120,53 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee let checksCF = conditionformat.checksCF(r, c, cf_compute); //单元格 背景颜色 - luckysheetTableContent.fillStyle = menuButton.checkstatus(Store.flowdata, r, c, "bg"); + let fillStyle = menuButton.checkstatus(Store.flowdata, r, c, "bg"); if(checksAF != null && checksAF[1] != null){ //若单元格有交替颜色 背景颜色 - luckysheetTableContent.fillStyle = checksAF[1]; + fillStyle = checksAF[1]; } if(checksCF != null && checksCF["cellColor"] != null){ //若单元格有条件格式 背景颜色 - luckysheetTableContent.fillStyle = checksCF["cellColor"]; + fillStyle = checksCF["cellColor"]; } - luckysheetTableContent.fillRect( - (start_c + offsetLeft - 1) , - (start_r + offsetTop) , - (end_c - start_c) , - (end_r - start_r - 1) - ) + + if(fillStyle==null){ + luckysheetTableContent.fillStyle = "rgba(255,255,255)"; + } + else{ + luckysheetTableContent.fillStyle = fillStyle; + } + + let borderfix = menuButton.borderfix(Store.flowdata, r, c); + + let cellsize = [ + (start_c + offsetLeft + borderfix[0]), + (start_r + offsetTop + borderfix[1]), + (end_c - start_c + borderfix[2]-(!!isMerge?1:0)), + (end_r - start_r + borderfix[3]) + ]; + luckysheetTableContent.fillRect(cellsize[0], cellsize[1], cellsize[2], cellsize[3]); + + // luckysheetTableContent.fillRect( + // (start_c + offsetLeft - 1) , + // (start_r + offsetTop) , + // (end_c - start_c) , + // (end_r - start_r) + // ) //若单元格有批注(单元格右上角红色小三角标示) if(cell.ps != null){ - let ps_w = 5, ps_h = 5; //红色小三角宽高 + let ps_w = 5*Store.zoomRatio, ps_h = 5*Store.zoomRatio; //红色小三角宽高 luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (end_c + offsetLeft - ps_w), - start_r + offsetTop + (start_r + offsetTop) ); luckysheetTableContent.lineTo( - end_c + offsetLeft, - start_r + offsetTop + (end_c + offsetLeft), + (start_r + offsetTop) ); luckysheetTableContent.lineTo( - end_c + offsetLeft, + (end_c + offsetLeft), (start_r + offsetTop + ps_h) ); luckysheetTableContent.fillStyle = "#FC6666"; @@ -1375,6 +1383,7 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee luckysheetTableContent.beginPath(); luckysheetTableContent.rect(pos_x , pos_y, cellWidth , cellHeight ); luckysheetTableContent.clip(); + luckysheetTableContent.scale(Store.zoomRatio,Store.zoomRatio); let horizonAlignPos = (pos_x + space_width) ; //默认为1,左对齐 if(horizonAlign == "0"){ //居中对齐 @@ -1399,6 +1408,15 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee verticalAlignPos_text = (pos_y + space_height) ; luckysheetTableContent.textBaseline = "top"; } + + verticalAlignPos = verticalAlignPos/Store.zoomRatio; + horizonAlignPos = horizonAlignPos/Store.zoomRatio; + verticalAlignPos_text = verticalAlignPos_text/Store.zoomRatio; + // pos_x = pos_x/Store.zoomRatio; + // pos_y = pos_y/Store.zoomRatio; + // space_width = space_width/Store.zoomRatio; + // cellHeight = cellHeight/Store.zoomRatio; + // oneLineTextHeight = oneLineTextHeight/Store.zoomRatio; //若单元格有条件格式图标集 if(checksCF != null && checksCF["icons"] != null){ @@ -1411,14 +1429,14 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee t * 32, 32, 32, - pos_x , + pos_x/Store.zoomRatio , verticalAlignPos, - oneLineTextHeight, - oneLineTextHeight + oneLineTextHeight/Store.zoomRatio, + oneLineTextHeight/Store.zoomRatio ); if(horizonAlign != "0" && horizonAlign != "2"){ //左对齐时 文本渲染空出一个图标的距离 - horizonAlignPos = horizonAlignPos + oneLineTextHeight; + horizonAlignPos = horizonAlignPos + oneLineTextHeight/Store.zoomRatio; } } @@ -1442,7 +1460,7 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee // luckysheetTableContent.textBaseline = 'top'; //textBaseline以top计算 let strArr = [];//文本截断数组 - strArr = getCellTextSplitArr(value.toString(), strArr, cellWidth - space_width * 2, luckysheetTableContent); + strArr = getCellTextSplitArr(value.toString(), strArr, (cellWidth - space_width * 2), luckysheetTableContent); let word_space_height = oneLineTextHeight/3; for(let i = 0; i < strArr.length; i++){ let strV = strArr[i]; @@ -1476,18 +1494,23 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee clLine = -strHeight / 2; } - luckysheetTableContent.fillText(strV, horizonAlignPos, (verticalAlignPos + i * (strHeight+word_space_height))); + verticalAlignPos = (verticalAlignPos + i * (strHeight+word_space_height)); + verticalAlignPos = verticalAlignPos/Store.zoomRatio; + horizonAlignPos = horizonAlignPos/Store.zoomRatio; + + luckysheetTableContent.fillText(strV, horizonAlignPos, verticalAlignPos); if(cl == "1" && !isRealNull(strV)){ luckysheetTableContent.beginPath(); luckysheetTableContent.strokeStyle = "#000"; - - luckysheetTableContent.moveTo(horizonAlignPos, - (verticalAlignPos + i * (strHeight+word_space_height)) +clLine + clLine = clLine/Store.zoomRatio; + luckysheetTableContent.moveTo( + horizonAlignPos, + verticalAlignPos +clLine ); luckysheetTableContent.lineTo( - horizonAlignPos + strWidth, - (verticalAlignPos + i * (strHeight+word_space_height)) +clLine + horizonAlignPos + strWidth/Store.zoomRatio, + verticalAlignPos + clLine ); luckysheetTableContent.stroke(); luckysheetTableContent.closePath(); @@ -1503,48 +1526,108 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee //旋转重新计算水平、垂直方向坐标 if(cell.tr == "1" || cell.tr == "2"){ - let textW = 0.707 * (textMetrics + oneLineTextHeight); - let textH = 0.707 * (textMetrics + oneLineTextHeight); + let textW = 0.707 * (textMetrics)/Store.zoomRatio; + let textH = 0.707 * (textMetrics)/Store.zoomRatio; + let oneWord = 0.707*oneLineTextHeight/Store.zoomRatio; - let hAP = (pos_x + space_width) ; + let hAP = (pos_x + space_width)/Store.zoomRatio ; if(horizonAlign == "0"){ - hAP = (pos_x + cellWidth / 2) - (textW / 2); + hAP = (pos_x + cellWidth / 2)/Store.zoomRatio - (textW / 2); } else if(horizonAlign == "2"){ - hAP = (pos_x + cellWidth - space_width) - textW; + hAP = (pos_x + cellWidth - space_width)/Store.zoomRatio - textW; } - let vAP = (pos_y + cellHeight - space_height) - textH; + let vAP = (pos_y + cellHeight - space_height)/Store.zoomRatio - textH; if(verticalAlign == "0"){ - vAP = (pos_y + cellHeight / 2) - (textH / 2); + vAP = (pos_y + cellHeight / 2)/Store.zoomRatio - (textH / 2); } else if(verticalAlign == "1"){ - vAP = (pos_y + space_height) ; + vAP = (pos_y + space_height)/Store.zoomRatio ; } + + // hAP = hAP / Store.zoomRatio; + // vAP = vAP / Store.zoomRatio; //向下倾斜(45 旋转) if(cell.tr == "1"){ luckysheetTableContent.save(); luckysheetTableContent.translate(hAP, vAP); - luckysheetTableContent.rotate(45 * Math.PI / 180); + luckysheetTableContent.rotate(Math.PI / 4); luckysheetTableContent.translate(-hAP, -vAP); + + let fillX= hAP+oneWord/2, fillY = vAP-oneWord/2; + if(horizonAlign == "0"){//0 center, 1 left, 2 right + if(verticalAlign == "0"){//0 middle, 1 up, 2 down + fillX = hAP; + fillY = vAP; + } + else if(verticalAlign == "1"){ + // fillX= hAP; + } + else if(verticalAlign == "2"){ + fillX = hAP; + fillY = vAP+oneWord/2; + } + } + else if(horizonAlign == "1"){ + if(verticalAlign == "0"){//0 middle, 1 up, 2 down + fillX = hAP; + fillY = vAP; + } + else if(verticalAlign == "1"){ + // fillX= hAP; + } + else if(verticalAlign == "2"){ + fillX = hAP; + fillY = vAP+oneWord/2; + } + } + else if(horizonAlign == "2"){ + if(verticalAlign == "0"){//0 middle, 1 up, 2 down + fillX = hAP; + fillY = vAP; + } + else if(verticalAlign == "1"){ + fillX= hAP; + fillY = vAP; + } + else if(verticalAlign == "2"){ + fillX = hAP; + fillY = vAP+oneWord/2; + } + } + luckysheetTableContent.fillText( value == null ? "" : value, - hAP + (0.707 * 0.707 * oneLineTextHeight), - vAP - (0.707 * 0.707 * oneLineTextHeight) + fillX, fillY ); luckysheetTableContent.restore(); if(cl == "1" && !isRealNull(value)){ + + let lineToX = 0, lineToY = 0; + if(verticalAlign == "0"){//0 middle, 1 up, 2 down + + } + else if(verticalAlign == "1"){ + lineToX = -oneWord/2; + lineToY = oneWord/2; + } + else if(verticalAlign == "2"){ + lineToX = oneWord/2; + lineToY = -oneWord/2; + } + luckysheetTableContent.beginPath(); luckysheetTableContent.strokeStyle = "#000"; luckysheetTableContent.moveTo( - hAP + oneLineTextHeight / 2, - vAP + oneLineTextHeight / 2 + fillX+lineToX, + fillY+lineToY ); luckysheetTableContent.lineTo( - hAP + textW - oneLineTextHeight / 2, - vAP + textH - oneLineTextHeight / 2 + fillX+ textW+lineToX, + fillY+ textH+lineToY ); luckysheetTableContent.closePath(); luckysheetTableContent.stroke(); @@ -1555,25 +1638,83 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee if(cell.tr == "2"){ luckysheetTableContent.save(); luckysheetTableContent.translate(hAP, vAP + textH); - luckysheetTableContent.rotate(-45 * Math.PI / 180); + luckysheetTableContent.rotate(-Math.PI/4); luckysheetTableContent.translate(-hAP, -(vAP + textH)); + + + let fillX= hAP, fillY = vAP+textH; + if(horizonAlign == "0"){//0 center, 1 left, 2 right + if(verticalAlign == "0"){//0 middle, 1 up, 2 down + fillX = hAP; + fillY = vAP+textH; + } + else if(verticalAlign == "1"){ + // fillX= hAP; + } + else if(verticalAlign == "2"){ + fillX = hAP; + fillY = vAP+textH+oneWord/2; + } + } + else if(horizonAlign == "1"){ + if(verticalAlign == "0"){//0 middle, 1 up, 2 down + fillX = hAP; + fillY = vAP+textH; + } + else if(verticalAlign == "1"){ + // fillX= hAP; + } + else if(verticalAlign == "2"){ + fillX = hAP; + fillY = vAP+textH+oneWord/2; + } + } + else if(horizonAlign == "2"){ + if(verticalAlign == "0"){//0 middle, 1 up, 2 down + fillX = hAP; + fillY = vAP+textH; + } + else if(verticalAlign == "1"){ + fillX= hAP-oneWord/2; + fillY = vAP+textH; + } + else if(verticalAlign == "2"){ + fillX = hAP; + fillY = vAP+textH+oneWord/2; + } + } + luckysheetTableContent.fillText( value == null ? "" : value, - hAP + (0.707 * 0.707 * oneLineTextHeight), - vAP + textH - (0.707 * 0.707 * oneLineTextHeight) + fillX, + fillY ); luckysheetTableContent.restore(); if(cl == "1" && !isRealNull(value)){ + + let lineToX = 0, lineToY = 0; + if(verticalAlign == "0"){//0 middle, 1 up, 2 down + + } + else if(verticalAlign == "1"){ + lineToX = 0; + lineToY = oneWord; + } + else if(verticalAlign == "2"){ + lineToX = 0; + lineToY = -oneWord; + } + luckysheetTableContent.beginPath(); luckysheetTableContent.strokeStyle = "#000"; luckysheetTableContent.moveTo( - hAP + oneLineTextHeight / 2, - vAP + textH - oneLineTextHeight / 2 + fillX+lineToX, + fillY + lineToY ); luckysheetTableContent.lineTo( - hAP + textW - oneLineTextHeight / 2, - vAP + oneLineTextHeight / 2 + fillX + textW+lineToX, + fillY - textH+lineToY ); luckysheetTableContent.closePath(); luckysheetTableContent.stroke(); @@ -1599,9 +1740,12 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee let textW = getMeasureText(vArr[i], luckysheetTableContent).width; //luckysheetTableContent.measureText(vArr[i]).width; let textH = oneLineTextHeight; + + // textW /= Store.zoomRatio; + // textH /= Store.zoomRatio; - textW_all += textW; - textH_all += textH; + textW_all += textW/Store.zoomRatio; + textH_all += textH/Store.zoomRatio; let hAP = (pos_x + space_width) ; if(horizonAlign == "0"){ @@ -1618,8 +1762,11 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee else if(verticalAlign == "1"){ vAP = (pos_y + space_height) ; } + + hAP = hAP / Store.zoomRatio; + vAP = vAP / Store.zoomRatio; - luckysheetTableContent.fillText(vArr[i], hAP, (vAP + i * textH)); + luckysheetTableContent.fillText(vArr[i], hAP, (vAP + i * textH/Store.zoomRatio)); } if(cl == "1" && !isRealNull(value)){ @@ -1642,6 +1789,9 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee vAP = (pos_y + space_height) ; } + hAP = hAP / Store.zoomRatio; + vAP = vAP / Store.zoomRatio; + luckysheetTableContent.beginPath(); luckysheetTableContent.strokeStyle = "#000"; luckysheetTableContent.moveTo( @@ -1677,31 +1827,34 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee vAP = (pos_y + space_height) ; } + hAP = hAP / Store.zoomRatio; + vAP = vAP / Store.zoomRatio; + //向下90(90 旋转) if(tr == "4"){ luckysheetTableContent.save(); luckysheetTableContent.translate(hAP, vAP); luckysheetTableContent.rotate(90 * Math.PI / 180); luckysheetTableContent.translate(-hAP, -vAP); - luckysheetTableContent.fillText(value == null ? "" : value, hAP, vAP - textW); + luckysheetTableContent.fillText(value == null ? "" : value, hAP, vAP - textW/ Store.zoomRatio); luckysheetTableContent.restore(); } //向上90(-90 旋转) if(tr == "5"){ luckysheetTableContent.save(); - luckysheetTableContent.translate(hAP + textH, vAP); + luckysheetTableContent.translate(hAP + textH/ Store.zoomRatio, vAP); luckysheetTableContent.rotate(-90 * Math.PI / 180); - luckysheetTableContent.translate(-(hAP + textH), -vAP); - luckysheetTableContent.fillText(value == null ? "" : value, hAP, vAP - textH); + luckysheetTableContent.translate(-(hAP + textH/ Store.zoomRatio), -vAP); + luckysheetTableContent.fillText(value == null ? "" : value, hAP, vAP - textH/ Store.zoomRatio); luckysheetTableContent.restore(); } if(cl == "1" && !isRealNull(value)){ luckysheetTableContent.beginPath(); luckysheetTableContent.strokeStyle = "#000"; - luckysheetTableContent.moveTo(hAP + textW / 2, vAP); - luckysheetTableContent.lineTo(hAP + textW / 2, vAP + textH); + luckysheetTableContent.moveTo(hAP + textW/ Store.zoomRatio / 2, vAP); + luckysheetTableContent.lineTo(hAP + textW/ Store.zoomRatio / 2, vAP + textH/ Store.zoomRatio); luckysheetTableContent.closePath(); luckysheetTableContent.stroke(); } @@ -1733,11 +1886,11 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee luckysheetTableContent.strokeStyle = "#000"; luckysheetTableContent.moveTo( horizonAlignPos, - verticalAlignPos + oneLineTextHeight / 2 + verticalAlignPos + oneLineTextHeight / 2 / Store.zoomRatio ); luckysheetTableContent.lineTo( - horizonAlignPos + textMetrics, - verticalAlignPos + oneLineTextHeight / 2 + horizonAlignPos + textMetrics/ Store.zoomRatio, + verticalAlignPos + oneLineTextHeight / 2 / Store.zoomRatio ); luckysheetTableContent.stroke(); luckysheetTableContent.closePath(); @@ -1749,14 +1902,14 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee if(cellOverflow_bd_r_render){ //右边框 - if(!Store.luckysheetcurrentisPivotTable){ + if(!Store.luckysheetcurrentisPivotTable && !fillStyle){ luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( - (end_c + offsetLeft - 2 + 0.5), + (end_c + offsetLeft - 2 + bodrder05), (start_r + offsetTop - 2) ); luckysheetTableContent.lineTo( - (end_c + offsetLeft - 2 + 0.5), + (end_c + offsetLeft - 2 + bodrder05), (end_r + offsetTop - 2) ); luckysheetTableContent.lineWidth = 1; @@ -1767,15 +1920,15 @@ let cellRender = function(r, c, start_r, start_c, end_r, end_c, value, luckyshee } //下边框 - if(!Store.luckysheetcurrentisPivotTable){ + if(!Store.luckysheetcurrentisPivotTable && !fillStyle){ luckysheetTableContent.beginPath(); luckysheetTableContent.moveTo( (start_c + offsetLeft - 2), - (end_r + offsetTop - 2 + 0.5) + (end_r + offsetTop - 2 + bodrder05) ); luckysheetTableContent.lineTo( (end_c + offsetLeft - 2), - (end_r + offsetTop - 2 + 0.5) + (end_r + offsetTop - 2 + bodrder05) ); luckysheetTableContent.lineWidth = 1; luckysheetTableContent.strokeStyle = luckysheetdefaultstyle.strokeStyle; @@ -1836,6 +1989,7 @@ let cellOverflowRender = function(r, c, stc, edc,luckysheetTableContent,scrollHe luckysheetTableContent.beginPath(); luckysheetTableContent.rect(pos_x, pos_y, cellWidth, cellHeight); luckysheetTableContent.clip(); + luckysheetTableContent.scale(Store.zoomRatio,Store.zoomRatio); //溢出单元格 水平对齐 let horizonAlign = menuButton.checkstatus(Store.flowdata, r, c, "ht"); @@ -1865,6 +2019,10 @@ let cellOverflowRender = function(r, c, stc, edc,luckysheetTableContent,scrollHe luckysheetTableContent.textBaseline = "top"; } + verticalAlignPos = verticalAlignPos/Store.zoomRatio; + horizonAlignPos = horizonAlignPos/Store.zoomRatio; + verticalAlignPos_text = verticalAlignPos_text/Store.zoomRatio; + //交替颜色 let checksAF = alternateformat.checksAF(r, c, af_compute); //条件格式 @@ -1893,11 +2051,11 @@ let cellOverflowRender = function(r, c, stc, edc,luckysheetTableContent,scrollHe luckysheetTableContent.strokeStyle = "#000"; luckysheetTableContent.moveTo( horizonAlignPos, - verticalAlignPos + oneLineTextHeight / 2 + verticalAlignPos + oneLineTextHeight / 2/Store.zoomRatio ); luckysheetTableContent.lineTo( - horizonAlignPos + textMetrics, - verticalAlignPos + oneLineTextHeight / 2 + horizonAlignPos + textMetrics/Store.zoomRatio, + verticalAlignPos + oneLineTextHeight / 2/Store.zoomRatio ); luckysheetTableContent.stroke(); luckysheetTableContent.closePath(); @@ -2124,6 +2282,7 @@ function cellOverflow_colIn(map, r, c, col_st, col_ed){ } } + export { luckysheetDrawgridRowTitle, luckysheetDrawgridColumnTitle, diff --git a/src/global/getRowlen.js b/src/global/getRowlen.js index 1a0c0caf8..8d16a4e0f 100644 --- a/src/global/getRowlen.js +++ b/src/global/getRowlen.js @@ -94,6 +94,8 @@ function rowlenByRange(d, r1, r2, cfg) { } } + currentRowLen = currentRowLen/Store.zoomRatio; + if(currentRowLen != Store.defaultrowlen){ cfg_clone["rowlen"][r] = currentRowLen; } @@ -176,6 +178,9 @@ function getMeasureText(value, ctx){ //console.log(value, oneLineTextHeight, measureText.actualBoundingBoxDescent+measureText.actualBoundingBoxAscent,ctx.font); } + cache.width *= Store.zoomRatio; + cache.actualBoundingBoxDescent *= Store.zoomRatio; + cache.actualBoundingBoxAscent *= Store.zoomRatio; Store.measureTextCache[value + "_" + ctx.font] = cache; return cache; diff --git a/src/global/refresh.js b/src/global/refresh.js index 794a702f2..274953bd0 100644 --- a/src/global/refresh.js +++ b/src/global/refresh.js @@ -986,14 +986,14 @@ function luckysheetrefreshgrid(scrollWidth, scrollHeight) { let luckysheetTableContent = $("#luckysheetTableContent").get(0).getContext("2d"); luckysheetDrawMain(scrollWidth, scrollHeight); - luckysheetTableContent.clearRect(0, 0, 46, 20); + // luckysheetTableContent.clearRect(0, 0, 46, 20); luckysheetDrawgridColumnTitle(scrollWidth); luckysheetDrawgridRowTitle(scrollHeight); //清除canvas左上角区域 防止列标题栏序列号溢出显示 - luckysheetTableContent.clearRect(0, 0, Store.rowHeaderWidth * Store.devicePixelRatio, Store.columeHeaderHeight * Store.devicePixelRatio); + luckysheetTableContent.clearRect(0, 0, (Store.rowHeaderWidth* Store.devicePixelRatio-1) , (Store.columeHeaderHeight* Store.devicePixelRatio-1) ); } } diff --git a/src/global/rhchInit.js b/src/global/rhchInit.js index 77ba1f6da..e21464ee7 100644 --- a/src/global/rhchInit.js +++ b/src/global/rhchInit.js @@ -1,6 +1,8 @@ import Store from '../store'; +import {zoomInitial} from '../controllers/zoom'; export default function rhchInit(rowheight, colwidth) { + zoomInitial();//Zoom sheet on first load //行高 if(rowheight != null){ Store.visibledatarow = []; @@ -19,7 +21,7 @@ export default function rhchInit(rowheight, colwidth) { continue; } else { - Store.rh_height += rowlen + 1; + Store.rh_height += Math.round(rowlen*Store.zoomRatio) + 1; } Store.visibledatarow.push(Store.rh_height); //行的临时长度分布 @@ -60,7 +62,7 @@ export default function rhchInit(rowheight, colwidth) { } } - Store.ch_width += firstcolumnlen + 1; + Store.ch_width += Math.round(firstcolumnlen*Store.zoomRatio) + 1; Store.visibledatacolumn.push(Store.ch_width);//列的临时长度分布 diff --git a/src/store/index.js b/src/store/index.js index 4132c79f6..06b092cf4 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -116,6 +116,8 @@ const Store = { measureTextCache:{}, measureTextCacheTimeOut:null, + + zoomRatio:1, } export default Store; \ No newline at end of file diff --git a/src/utils/util.js b/src/utils/util.js index c5dc17430..6d89e7352 100644 --- a/src/utils/util.js +++ b/src/utils/util.js @@ -621,8 +621,6 @@ function loadLinks(urls) { - - export { isJsonString, common_extend,