hqchart 1.1.15060 → 1.1.15070
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/umychart.vue.js +156 -157
- package/package.json +1 -1
- package/src/jscommon/umychart.js +457 -129
- package/src/jscommon/umychart.resource/css/tools.css +62 -0
- package/src/jscommon/umychart.style.js +6 -0
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +464 -130
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +464 -130
|
@@ -2342,6 +2342,68 @@ input[type="color"] {
|
|
|
2342
2342
|
}
|
|
2343
2343
|
|
|
2344
2344
|
|
|
2345
|
+
/*
|
|
2346
|
+
|
|
2347
|
+
*/
|
|
2348
|
+
.UMyChart_FrameToolbar_Div
|
|
2349
|
+
{
|
|
2350
|
+
visibility:hidden;
|
|
2351
|
+
position: absolute;
|
|
2352
|
+
background-color: transparent;
|
|
2353
|
+
z-index: 10;
|
|
2354
|
+
line-height: 24px;
|
|
2355
|
+
left:1px;
|
|
2356
|
+
top:1px;
|
|
2357
|
+
display: flex;
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
.UMyChart_FrameToolbar_Div_Button
|
|
2361
|
+
{
|
|
2362
|
+
padding-left: 2px;
|
|
2363
|
+
}
|
|
2364
|
+
|
|
2365
|
+
.UMyChart_FrameToolbar_Span_Button
|
|
2366
|
+
{
|
|
2367
|
+
font-size: 14px;
|
|
2368
|
+
color: rgb(190,190,190);
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.UMyChart_FrameToolbar_Div_Tooltip
|
|
2372
|
+
{
|
|
2373
|
+
visibility:hidden;
|
|
2374
|
+
|
|
2375
|
+
background-color: rgb(220,220,220);
|
|
2376
|
+
color: rgb(0,0,0);
|
|
2377
|
+
text-align: center;
|
|
2378
|
+
border-radius: 2px;
|
|
2379
|
+
padding: 2px;
|
|
2380
|
+
position: absolute;
|
|
2381
|
+
z-index: 50;
|
|
2382
|
+
font-size: 14px;
|
|
2383
|
+
white-space: nowrap;
|
|
2384
|
+
right: 100%;
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
.UMyChart_Toolbar_Tooltip_Div
|
|
2388
|
+
{
|
|
2389
|
+
visibility:hidden;
|
|
2390
|
+
background-color: rgb(220,220,220);
|
|
2391
|
+
color: rgb(0,0,0);
|
|
2392
|
+
text-align: center;
|
|
2393
|
+
border-radius: 2px;
|
|
2394
|
+
padding: 2px;
|
|
2395
|
+
position: absolute;
|
|
2396
|
+
z-index: 50;
|
|
2397
|
+
font-size: 14px;
|
|
2398
|
+
white-space: nowrap;
|
|
2399
|
+
left:1px;
|
|
2400
|
+
top:1px;
|
|
2401
|
+
}
|
|
2402
|
+
|
|
2403
|
+
|
|
2404
|
+
|
|
2405
|
+
|
|
2406
|
+
|
|
2345
2407
|
|
|
2346
2408
|
|
|
2347
2409
|
|
|
@@ -411,6 +411,12 @@ function GetBlackStyle()
|
|
|
411
411
|
//Mergin:{ Left:4, Right:4, Top:2, Bottom:4 },
|
|
412
412
|
}
|
|
413
413
|
},
|
|
414
|
+
|
|
415
|
+
DivFrameToolbar:
|
|
416
|
+
{
|
|
417
|
+
Icon:{ Color:"rgb(156,156,156)", HoverColor:"rgb(255,255,255)" },
|
|
418
|
+
Tooltip:{ BGColor:"rgb(32,32,32)", TextColor:"rgb(204,204,204)", BorderColor:"rgb(69,69,69)" },
|
|
419
|
+
},
|
|
414
420
|
|
|
415
421
|
DrawPicture: //画图工具
|
|
416
422
|
{
|