1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "name": "xv-test",
- "style": "main",
- "styles": {
- "b-top": {
- "border": [{ "type": "top", "color": "#AAAAAA", "style": 2 }]
- },
- "b-left": {
- "border": [{ "type": "left", "color": "#AAAAAA", "style": 2 }]
- },
- "f-size": {
- "font": { "size": 16, "color": "#FFFFFF" }
- },
- "f-bold": { "font": { "bold": true } },
- "f-color": {
- "parents": [ "f-size", "f-bold", "b-top", "b-left" ],
- "font": { "color": "#AAAAAA" }
- },
- "fa": {
- "font": { "color": "#aaaaaa" }
- },
- "border-box-lt": {
- "border": [
- { "type": "top", "color": "#AAAAAA", "style": 2 },
- { "type": "left", "color": "#AAAAAA", "style": 2 }
- ]
- },
- "border-box-rt": {
- "border": [
- { "type": "top", "color": "#AAAAAA", "style": 2 },
- { "type": "right", "color": "#AAAAAA", "style": 2 }
- ]
- },
- "border-box-l": { "border": [ { "type": "left", "color": "#AAAAAA", "style": 2 } ] },
- "border-box-t": { "border": [ { "type": "top", "color": "#AAAAAA", "style": 2 } ] },
- "border-box-r": { "border": [ { "type": "right", "color": "#AAAAAA", "style": 2 } ] },
- "border-box-b": { "border": [ { "type": "bottom", "color": "#AAAAAA", "style": 2 } ] },
- "border-box-lb": {
- "border": [
- { "type": "bottom", "color": "#AAAAAA", "style": 2 },
- { "type": "left", "color": "#AAAAAA", "style": 2 }
- ]
- }
- },
- "merges": [
- { "x": 2, "y": 2, "dx": 12, "dy": 12 }
- ],
- "columns_width": [
- { "x": 0, "dx": 1, "width": 50 }
- ],
- "images": [
- { "x": 2, "y": 2, "path": "resource/img.jpg", "format": { "x_offset": 100, "hyperlink": "https://github.com/360EntSecGroup-Skylar/excelize" } }
- ],
- "style_rects": [
- { "x": 2, "y": 2, "dx": 2, "dy": 2, "styles": [ "border-box-lt" ] },
- { "x": 2, "y": 11, "dx": 2, "dy": 11, "styles": [ "border-box-lb" ] },
- { "x": 3, "y": 2, "dx": 5, "dy": 2, "styles": [ "border-box-t" ] },
- { "x": 2, "y": 3, "dx": 2, "dy": 10, "styles": [ "border-box-l" ] },
- { "x": 5, "y": 3, "dx": 5, "dy": 10, "styles": [ "border-box-r" ] }
- ],
- "rows": [
- {
- "height": 25,
- "cells": [
- { "value": 10, "styles": [ "f-color" ] },
- { "value": 20 },
- { "value": 30 }
- ]
- }
- ]
- }
|