Skip to content

Commit d88a52a

Browse files
committed
test(tooltip): add test case for displayTransition option
1 parent 4e73d95 commit d88a52a

File tree

4 files changed

+314
-0
lines changed

4 files changed

+314
-0
lines changed

i18n/langnb-NO.js

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
2+
3+
/*
4+
* Licensed to the Apache Software Foundation (ASF) under one
5+
* or more contributor license agreements. See the NOTICE file
6+
* distributed with this work for additional information
7+
* regarding copyright ownership. The ASF licenses this file
8+
* to you under the Apache License, Version 2.0 (the
9+
* "License"); you may not use this file except in compliance
10+
* with the License. You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing,
15+
* software distributed under the License is distributed on an
16+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17+
* KIND, either express or implied. See the License for the
18+
* specific language governing permissions and limitations
19+
* under the License.
20+
*/
21+
22+
23+
/**
24+
* AUTO-GENERATED FILE. DO NOT MODIFY.
25+
*/
26+
(function(root, factory) {
27+
if (typeof define === 'function' && define.amd) {
28+
// AMD. Register as an anonymous module.
29+
define(['exports', 'echarts'], factory);
30+
} else if (
31+
typeof exports === 'object' &&
32+
typeof exports.nodeName !== 'string'
33+
) {
34+
// CommonJS
35+
factory(exports, require('echarts/lib/echarts'));
36+
} else {
37+
// Browser globals
38+
factory({}, root.echarts);
39+
}
40+
})(this, function(exports, echarts) {
41+
42+
43+
/**
44+
* Language: Norwegian Bokmål.
45+
*/
46+
47+
var localeObj = {
48+
time: {
49+
month: [
50+
'januar', 'februar', 'mars', 'april', 'mai', 'juni',
51+
'juli', 'august', 'september', 'oktober', 'november', 'desember',
52+
],
53+
monthAbbr: [
54+
'jan', 'feb', 'mar', 'apr', 'mai', 'jun',
55+
'jul', 'aug', 'sep', 'okt', 'nov', 'des',
56+
],
57+
dayOfWeek: [
58+
'søndag', 'mandag', 'tirsdag', 'onsdag', 'torsdag', 'fredag', 'lørdag',
59+
],
60+
dayOfWeekAbbr: ['søn', 'man', 'tir', 'ons', 'tor', 'fre', 'lør'],
61+
},
62+
legend: {
63+
selector: {
64+
all: 'Alle',
65+
inverse: 'Omvendt',
66+
},
67+
},
68+
toolbox: {
69+
brush: {
70+
title: {
71+
rect: 'Boksutvalg',
72+
polygon: 'Lassomarkering',
73+
lineX: 'Vannrett utvalg',
74+
lineY: 'Loddrett utvalg',
75+
keep: 'Behold utvalg',
76+
clear: 'Fjern utvalg',
77+
},
78+
},
79+
dataView: {
80+
title: 'Datavisning',
81+
lang: ['Datavisning', 'Lukk', 'Oppfrisk'],
82+
},
83+
dataZoom: {
84+
title: {
85+
zoom: 'Zoom',
86+
back: 'Tilbakestill zoom',
87+
},
88+
},
89+
magicType: {
90+
title: {
91+
line: 'Bytt til linjediagram',
92+
bar: 'Bytt til stolpediagram',
93+
stack: 'Stable',
94+
tiled: 'Side ved side',
95+
},
96+
},
97+
restore: {
98+
title: 'Tilbakestill',
99+
},
100+
saveAsImage: {
101+
title: 'Lagre som bilde',
102+
lang: ['Høyreklikk for å lagre som bilde'],
103+
},
104+
},
105+
series: {
106+
typeNames: {
107+
pie: 'Sektordiagram',
108+
bar: 'Stolpediagram',
109+
line: 'Linjediagram',
110+
scatter: 'Spredningsplott',
111+
effectScatter: 'Krusningsspredningsplott',
112+
radar: 'Radardiagram',
113+
tree: 'Tre',
114+
treemap: 'Trekart',
115+
boxplot: 'Boksplot',
116+
candlestick: 'Candlestick',
117+
k: 'K-linjediagram',
118+
heatmap: 'Varmekart',
119+
map: 'Kart',
120+
parallel: 'Parallelle koordinater',
121+
lines: 'Linjediagram',
122+
graph: 'Relasjonsgraf',
123+
sankey: 'Sankey-diagram',
124+
funnel: 'Traktdiagram',
125+
gauge: 'Måler',
126+
pictorialBar: 'Bildestolper',
127+
themeRiver: 'Tematisk elvediagram',
128+
sunburst: 'Solstrålediagram',
129+
custom: 'Tilpasset',
130+
chart: 'Diagram',
131+
},
132+
},
133+
aria: {
134+
general: {
135+
withTitle: 'Dette er et diagram om "{title}"',
136+
withoutTitle: 'Dette er et diagram',
137+
},
138+
series: {
139+
single: {
140+
prefix: '',
141+
withName: ' med type {seriesType} ved navn {seriesName}.',
142+
withoutName: ' med type {seriesType}.',
143+
},
144+
multiple: {
145+
prefix: '. Det består av {seriesCount} serier.',
146+
withName:
147+
' Serie {seriesId} er av typen {seriesType} som representerer {seriesName}.',
148+
withoutName: ' Serie {seriesId} er av typen {seriesType}.',
149+
separator: {
150+
middle: '',
151+
end: '',
152+
},
153+
},
154+
},
155+
data: {
156+
allData: 'Dataene er som følger: ',
157+
partialData: 'De første {displayCnt} elementene er: ',
158+
withName: 'dataene for {name} er {value}',
159+
withoutName: '{value}',
160+
separator: {
161+
middle: ', ',
162+
end: '. ',
163+
},
164+
},
165+
},
166+
};
167+
168+
echarts.registerLocale('nb-NO', localeObj);
169+
170+
});

test/runTest/actions/__meta__.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/runTest/actions/tooltip-displayTransition.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/tooltip-displayTransition.html

Lines changed: 142 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)