@operato/scene-scichart 7.0.3 → 7.0.4
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +10 -0
- package/db.sqlite +0 -0
- package/dist/charts/scichart-builder.js +7 -2
- package/dist/charts/scichart-builder.js.map +1 -1
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +6 -51
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +6 -31
- package/logs/{application-2024-07-04-13.log → application-2024-07-08-22.log} +8 -8
- package/logs/{application-2024-07-04-00.log → application-2024-07-08-23.log} +36 -22
- package/logs/connections-2024-07-08-22.log +50 -0
- package/logs/connections-2024-07-08-23.log +100 -0
- package/package.json +2 -2
- package/src/charts/scichart-builder.ts +10 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/cache/translations/system/en.json +0 -1
- package/cache/translations/system/ko.json +0 -1
- package/logs/application-2024-07-04-12.log +0 -107
- package/logs/application-2024-07-04-14.log +0 -210
- package/logs/application-2024-07-05-16.log +0 -106
- package/logs/application-2024-07-05-19.log +0 -1
- package/logs/application-2024-07-05-20.log +0 -5
- package/logs/application-2024-07-05-21.log +0 -1
- package/logs/application-2024-07-05-22.log +0 -105
- package/logs/application-2024-07-05-23.log +0 -1
- package/logs/application-2024-07-06-00.log +0 -105
- package/logs/connections-2024-07-04-00.log +0 -100
- package/logs/connections-2024-07-04-12.log +0 -50
- package/logs/connections-2024-07-04-13.log +0 -50
- package/logs/connections-2024-07-04-14.log +0 -100
- package/logs/connections-2024-07-05-16.log +0 -50
- package/logs/connections-2024-07-05-22.log +0 -50
- package/logs/connections-2024-07-06-00.log +0 -50
- package/logs/system/.ff447eb42e255d0436b200b50a92dc6546166b36-audit.json +0 -45
- package/logs/system/scenario-/353/251/224/354/235/270 /354/247/221/354/247/204/352/270/260 /354/204/274/354/213/261 /353/215/260/354/235/264/355/204/260 /354/241/260/355/232/214 - /354/213/244/354/213/234/352/260/204-2024-07-04-00.log" +0 -7
- package/logs/system/scenario-/353/251/224/354/235/270 /354/247/221/354/247/204/352/270/260 /354/204/274/354/213/261 /353/215/260/354/235/264/355/204/260 /354/241/260/355/232/214 - /354/213/244/354/213/234/352/260/204-2024-07-04-12.log" +0 -14
- package/logs/system/scenario-/353/251/224/354/235/270 /354/247/221/354/247/204/352/270/260 /354/204/274/354/213/261 /353/215/260/354/235/264/355/204/260 /354/241/260/355/232/214 - /354/213/244/354/213/234/352/260/204-2024-07-05-16.log" +0 -7
- package/logs/system/scenario-/353/251/224/354/235/270 /354/247/221/354/247/204/352/270/260 /354/204/274/354/213/261 /353/215/260/354/235/264/355/204/260 /354/241/260/355/232/214 - /354/213/244/354/213/234/352/260/204-2024-07-05-19.log" +0 -7
- package/logs/system/scenario-/353/251/224/354/235/270 /354/247/221/354/247/204/352/270/260 /354/204/274/354/213/261 /353/215/260/354/235/264/355/204/260 /354/241/260/355/232/214 - /354/213/244/354/213/234/352/260/204-2024-07-05-20.log" +0 -35
- package/logs/system/scenario-/353/251/224/354/235/270 /354/247/221/354/247/204/352/270/260 /354/204/274/354/213/261 /353/215/260/354/235/264/355/204/260 /354/241/260/355/232/214 - /354/213/244/354/213/234/352/260/204-2024-07-05-21.log" +0 -7
- package/logs/system/scenario-/353/251/224/354/235/270 /354/247/221/354/247/204/352/270/260 /354/204/274/354/213/261 /353/215/260/354/235/264/355/204/260 /354/241/260/355/232/214 - /354/213/244/354/213/234/352/260/204-2024-07-05-23.log" +0 -7
@@ -19,6 +19,7 @@ import {
|
|
19
19
|
NumberRange,
|
20
20
|
MouseWheelZoomModifier,
|
21
21
|
RubberBandXyZoomModifier,
|
22
|
+
ZoomPanModifier,
|
22
23
|
ZoomExtentsModifier,
|
23
24
|
RolloverModifier,
|
24
25
|
SmartDateLabelProvider,
|
@@ -29,7 +30,8 @@ import {
|
|
29
30
|
XPointMarker,
|
30
31
|
WaveAnimation,
|
31
32
|
LegendModifier,
|
32
|
-
ELegendPlacement
|
33
|
+
ELegendPlacement,
|
34
|
+
EXyDirection
|
33
35
|
} from 'scichart'
|
34
36
|
|
35
37
|
SciChartSurface.UseCommunityLicense()
|
@@ -54,6 +56,10 @@ function getThemeFromBrowser() {
|
|
54
56
|
}
|
55
57
|
|
56
58
|
function createPointMarker(wasmContext: any, pointStyle?: string, color: string = DEFAULT_COLOR) {
|
59
|
+
if (!pointStyle) {
|
60
|
+
return
|
61
|
+
}
|
62
|
+
|
57
63
|
const pointMarkerOptions = {
|
58
64
|
width: POINT_MARKER_SIZE,
|
59
65
|
height: POINT_MARKER_SIZE,
|
@@ -140,7 +146,7 @@ function createSeries(
|
|
140
146
|
const borderWidth = dataset.borderWidth || STROKE_THICKNESS
|
141
147
|
const pointMarker = createPointMarker(wasmContext, dataset.pointStyle, strokeColor)
|
142
148
|
|
143
|
-
let series
|
149
|
+
let series
|
144
150
|
if (dataset.type === 'bar') {
|
145
151
|
series = stacked
|
146
152
|
? new StackedColumnRenderableSeries(wasmContext, {
|
@@ -278,7 +284,8 @@ export async function buildSciChart(
|
|
278
284
|
// 줌인/줌아웃 모디파이어 추가
|
279
285
|
sciChartSurface.chartModifiers.add(
|
280
286
|
new RubberBandXyZoomModifier(),
|
281
|
-
new
|
287
|
+
// new ZoomPanModifier({ xyDirection: EXyDirection.XDirection }),
|
288
|
+
new MouseWheelZoomModifier({ xyDirection: EXyDirection.XDirection }),
|
282
289
|
new ZoomExtentsModifier()
|
283
290
|
)
|
284
291
|
|