feat: 初始化项目
This commit is contained in:
commit
0a7c075455
9
.gitignore
vendored
Normal file
9
.gitignore
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
.idea/
|
||||
target/
|
||||
*.iml
|
||||
rebel-remote.xml
|
||||
rebel.xml
|
||||
*.log
|
||||
.DS_Store
|
||||
*.gz
|
||||
dist/
|
20
Dockerfile
Normal file
20
Dockerfile
Normal file
@ -0,0 +1,20 @@
|
||||
FROM maven:3.8.1-jdk-8-slim as build
|
||||
|
||||
WORKDIR /workdir
|
||||
COPY ./pom.xml ./pom.xml
|
||||
COPY src ./src/
|
||||
|
||||
RUN mvn package -DskipTests
|
||||
|
||||
FROM openjdk:8u212-jre as runtime
|
||||
|
||||
COPY --from=build /workdir/target/bomaos-shop-*.jar /app/app.jar
|
||||
|
||||
|
||||
# 设置时区
|
||||
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
||||
RUN echo 'Asia/Shanghai' >/etc/timezone
|
||||
|
||||
ENTRYPOINT ["java", "-server", "-Xms1024M", "-Xmx1024M", "-Djava.security.egd=file:/dev/./urandom", "-Dfile.encoding=UTF-8", "-XX:+HeapDumpOnOutOfMemoryError", "-jar", "/app/app.jar" ]
|
||||
|
||||
|
674
LICENSE
Normal file
674
LICENSE
Normal file
@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
70
README.md
Normal file
70
README.md
Normal file
@ -0,0 +1,70 @@
|
||||
<h1 align="center">波猫商店</h1>
|
||||
<p align="center">
|
||||
<a href="https://github.com/Panyoujies/zlianpay-faka/releases"><img src="https://img.shields.io/badge/Version-1.0.1-green" alt="License"></a>
|
||||
<img alt="Spring Boot from Packagist badge" src="https://img.shields.io/badge/Spring--Boot-2.2.2-green">
|
||||
<a href="https://opensource.org/licenses/GPL-3.0"><img src="https://img.shields.io/badge/License-GPL--3.0-green" alt="License"></a>
|
||||
<a href="http://mp.baomidou.com"><img src="https://img.shields.io/badge/mybatis--plus-3.0-blue.svg" alt="mybatis-plus"></a>
|
||||
<img alt="shiro" src="https://img.shields.io/badge/Shiro-1.3.0-yellow">
|
||||
<br><br>
|
||||
<a href="http://blog.bomaos.com/post/11" target="_blank">部署文档</a>
|
||||
<a href="https://free.bomaos.com" target="_blank">演示地址</a>
|
||||
</p>
|
||||
|
||||
## AD 购买跨境账号就上 跨境小铺
|
||||
|
||||
跨境小铺 - 跨境账号购买,跨境小铺,AppleID,GV账号,谷歌账号,Telegram会员,谷歌邮箱,谷歌网盘,小火箭,Quan x,苹果礼品卡,Apple兑换码,网站代搭建
|
||||
|
||||
购买地址 [https://store.buykjzh.com](https://store.buykjzh.com)
|
||||
|
||||
## 🙋 仅供学习参考、不可用于违法用途。
|
||||
|
||||
* 博客网站 [http://bomaos.com](http://bomaos.com)
|
||||
|
||||
## 🌼 介绍
|
||||
本项目为个人学习开发,新版 2.0.3 已正式推出,一款高效安全的发卡平台。
|
||||
|
||||
支持的支付渠道:
|
||||
* v免签
|
||||
* 易支付-支付宝/微信/QQ钱包
|
||||
* [YunGouOS](https://dwz.cn/QQLN87nX)
|
||||
* 虎皮椒支付
|
||||
* payjs(已完成测试)可正常使用
|
||||
* 微信扫码支付
|
||||
* 支付宝当面付
|
||||
* 支付宝网站支付
|
||||
* 微信H5 (新增)
|
||||
* Paypal (国际收款) (新增)
|
||||
* epusdt 【usdt trc-20】[https://github.com/assimon/epusdt](https://github.com/assimon/epusdt)
|
||||
* 其他待添加。。
|
||||
|
||||
## 🔥 系统介绍
|
||||
- 开源式站长自动化售货解决方案、高效、稳定、快速!
|
||||
|
||||
演示地址:[https://free.bomaos.com/](https://free.bomaos.com/)
|
||||
|
||||
- 开发语言:JAVA
|
||||
- 开发框架:Spring boot
|
||||
- 前端UI [layui](https://www.layui.com/).
|
||||
|
||||
## 🍊 适用场景:
|
||||
适用于各种电商、优惠卷、论坛邀请码、充值卡、激活码、注册码、腾讯爱奇艺积分CDK等,支持手动和全自动发货,还有类似1688的分层批发模式。
|
||||
|
||||
## 🍊 功能特色:
|
||||
* Layui 开发的白天 - 黑夜 - 炫丽暗黑模板
|
||||
* 基于Layui开发的炫丽后台界面
|
||||
* 集成了后台多种主题模式
|
||||
* 炫丽暗黑界面支持自定义背景图片
|
||||
* 炫丽的前台卡片式商品展示
|
||||
* 支持无限层级的批发模式
|
||||
* 集成了微信订单消息通知以及邮件系统
|
||||
* 支持自定义网站标题、关键字、logo、等
|
||||
* 支持移动端支付宝唤醒APP支付
|
||||
* 集成了大量支付接口【微信官方扫码、支付宝当面付、v免签、payjs、虎皮椒V3、YunGouOS、值联码支付、码支付、USDT、等...】
|
||||
* 支持首页公告弹窗展示
|
||||
* 集成了强大的优惠券系统
|
||||
* 集成了自定义的商品购买备注字段
|
||||
|
||||
💬 有问题欢迎入
|
||||
* QQ群1反馈:940086807【已满】
|
||||
* QQ群2反馈:441322649
|
||||
* Telegram技术交流群: [https://t.me/bomaoshop](https://t.me/bomaoshop)
|
34
docker-compose.yaml
Normal file
34
docker-compose.yaml
Normal file
@ -0,0 +1,34 @@
|
||||
version: '3.9'
|
||||
services:
|
||||
app:
|
||||
container_name: bomaos-shop
|
||||
build: .
|
||||
restart: always
|
||||
environment:
|
||||
- spring.profiles.active=dev
|
||||
- user.timezone=GMT+08
|
||||
- spring.datasource.password=root
|
||||
- spring.datasource.url=jdbc:mysql://mysql:3306/bomaos-shop?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&rewriteBatchedStatements=true&&allowPublicKeyRetrieval=true
|
||||
volumes:
|
||||
- ./app/:/app/
|
||||
- ./app/logs/:/logs/
|
||||
ports:
|
||||
- 8085:8085
|
||||
depends_on:
|
||||
- mysql
|
||||
|
||||
mysql:
|
||||
container_name: mysql8
|
||||
image: mysql:8
|
||||
restart: always
|
||||
volumes:
|
||||
- ./mysql/conf:/etc/mysql/conf.d
|
||||
- ./mysql/data:/var/lib/mysql
|
||||
- ./mysql/logs:/logs
|
||||
- ./mysql/db/init.sql:/docker-entrypoint-initdb.d/init.sql #初始化sql, 将 sql/bomaos-shop.sql 复制到 mysql/db/init.sql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=root #root密码
|
||||
- MYSQL_DATABASE=bomaos-shop #数据库
|
||||
ports:
|
||||
- 3306:3306 #远程
|
||||
|
BIN
echarts-master.zip
Normal file
BIN
echarts-master.zip
Normal file
Binary file not shown.
67
echarts-master/.asf.yaml
Normal file
67
echarts-master/.asf.yaml
Normal file
@ -0,0 +1,67 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
github:
|
||||
description: Apache ECharts is a powerful, interactive charting and data visualization library for browser
|
||||
homepage: https://echarts.apache.org
|
||||
labels:
|
||||
- echarts
|
||||
- data-visualization
|
||||
- charts
|
||||
- charting-library
|
||||
- visualization
|
||||
- apache
|
||||
- data-viz
|
||||
- canvas
|
||||
- svg
|
||||
protected_branches:
|
||||
master:
|
||||
required_status_checks:
|
||||
# strict means "Require branches to be up to date before merging".
|
||||
strict: false
|
||||
# contexts are the names of checks that must pass
|
||||
# contexts:
|
||||
# - gh-infra/jenkins
|
||||
required_pull_request_reviews:
|
||||
dismiss_stale_reviews: true
|
||||
require_code_owner_reviews: false
|
||||
required_approving_review_count: 1
|
||||
required_linear_history: false
|
||||
required_signatures: false
|
||||
release:
|
||||
required_status_checks:
|
||||
strict: false
|
||||
required_pull_request_reviews:
|
||||
dismiss_stale_reviews: true
|
||||
require_code_owner_reviews: false
|
||||
required_approving_review_count: 1
|
||||
required_linear_history: false
|
||||
required_signatures: false
|
||||
next:
|
||||
required_status_checks:
|
||||
strict: false
|
||||
required_pull_request_reviews:
|
||||
dismiss_stale_reviews: true
|
||||
require_code_owner_reviews: false
|
||||
required_approving_review_count: 1
|
||||
required_linear_history: false
|
||||
required_signatures: false
|
||||
|
||||
notifications:
|
||||
commits: commits@echarts.apache.org
|
||||
pullrequests: commits@echarts.apache.org
|
||||
issues: commits@echarts.apache.org
|
38
echarts-master/.editorconfig
Normal file
38
echarts-master/.editorconfig
Normal file
@ -0,0 +1,38 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[**.js]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[**.css]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[**.less]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[**.styl]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[**.html]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[**.tpl]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[**.json]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
16
echarts-master/.eslintignore
Normal file
16
echarts-master/.eslintignore
Normal file
@ -0,0 +1,16 @@
|
||||
/dist
|
||||
/node_modules
|
||||
/build
|
||||
/i18n
|
||||
/extension-esm
|
||||
/extension
|
||||
/lib
|
||||
/esm
|
||||
/index.js
|
||||
/index.blank.js
|
||||
/index.common.js
|
||||
/index.simple.js
|
||||
/echarts.all.js
|
||||
/echarts.blank.js
|
||||
/echarts.common.js
|
||||
/echarts.simple.js
|
229
echarts-master/.eslintrc-common.yaml
Normal file
229
echarts-master/.eslintrc-common.yaml
Normal file
@ -0,0 +1,229 @@
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
# Note:
|
||||
# If eslint does not work in VSCode, please check:
|
||||
# (1) Whether "@typescript-eslint/eslint-plugin" and "@typescript-eslint/parser"
|
||||
# are npm installed locally. Should better in the same version.
|
||||
# (2) Whether "VSCode ESlint extension" is installed.
|
||||
# (3) If the project folder is not the root folder of your working space, please
|
||||
# config the "VSCode ESlint extension" in "settings":
|
||||
# ```json
|
||||
# "eslint.workingDirectories": [{"mode": "auto"}]
|
||||
# ```
|
||||
# Note that it should be "workingDirectories" rather than "WorkingDirectories".
|
||||
|
||||
root: true
|
||||
rules:
|
||||
# Check the rules in: node_modules/@typescript-eslint/eslint-plugin/README.md
|
||||
no-console:
|
||||
- 2
|
||||
-
|
||||
allow:
|
||||
- "warn"
|
||||
- "error"
|
||||
prefer-const: 1
|
||||
no-constant-condition: 0
|
||||
comma-dangle: 0
|
||||
no-debugger: 2
|
||||
no-dupe-keys: 2
|
||||
no-empty-character-class: 2
|
||||
no-ex-assign: 2
|
||||
no-extra-boolean-cast: 0
|
||||
no-func-assign: 2
|
||||
no-inner-declarations: 2
|
||||
no-invalid-regexp: 2
|
||||
no-negated-in-lhs: 2
|
||||
no-obj-calls: 2
|
||||
no-sparse-arrays: 2
|
||||
no-unreachable: 2
|
||||
use-isnan: 2
|
||||
valid-typeof: 2
|
||||
block-scoped-var: 2
|
||||
curly:
|
||||
- 2
|
||||
- "all"
|
||||
eqeqeq:
|
||||
- 2
|
||||
- "allow-null"
|
||||
guard-for-in: 2
|
||||
no-else-return: 0
|
||||
no-labels:
|
||||
- 2
|
||||
-
|
||||
allowLoop: true
|
||||
no-eval: 2
|
||||
no-extend-native: 2
|
||||
no-extra-bind: 0
|
||||
no-implied-eval: 2
|
||||
no-iterator: 2
|
||||
no-irregular-whitespace: 2
|
||||
no-lone-blocks: 2
|
||||
no-loop-func: 2
|
||||
no-multi-str: 2
|
||||
no-native-reassign: 2
|
||||
no-new-wrappers: 2
|
||||
no-octal: 2
|
||||
no-octal-escape: 2
|
||||
no-proto: 2
|
||||
no-self-compare: 2
|
||||
no-unneeded-ternary: 2
|
||||
no-with: 2
|
||||
radix: 2
|
||||
wrap-iife:
|
||||
- 2
|
||||
- "any"
|
||||
no-delete-var: 2
|
||||
no-dupe-args: 2
|
||||
no-duplicate-case: 2
|
||||
no-label-var: 2
|
||||
no-shadow-restricted-names: 2
|
||||
no-undef: 2
|
||||
no-undef-init: 2
|
||||
"no-use-before-define": "off"
|
||||
"@typescript-eslint/no-use-before-define": 0
|
||||
brace-style:
|
||||
- 2
|
||||
- "stroustrup"
|
||||
- {}
|
||||
comma-spacing:
|
||||
- 2
|
||||
-
|
||||
before: false
|
||||
after: true
|
||||
comma-style:
|
||||
- 2
|
||||
- "last"
|
||||
new-parens: 2
|
||||
no-array-constructor: 2
|
||||
no-multi-spaces:
|
||||
- 1
|
||||
-
|
||||
ignoreEOLComments: true
|
||||
exceptions:
|
||||
Property: true
|
||||
no-new-object: 2
|
||||
no-trailing-spaces: 2
|
||||
no-extra-parens:
|
||||
- 2
|
||||
- "functions"
|
||||
no-mixed-spaces-and-tabs: 2
|
||||
one-var:
|
||||
- 2
|
||||
- "never"
|
||||
operator-linebreak:
|
||||
- 2
|
||||
- "before"
|
||||
-
|
||||
overrides:
|
||||
"=": "after"
|
||||
"quotes": "off"
|
||||
"@typescript-eslint/quotes":
|
||||
- 2
|
||||
- "single"
|
||||
"semi": "off"
|
||||
"@typescript-eslint/semi":
|
||||
- 2
|
||||
- "always"
|
||||
semi-spacing: 2
|
||||
keyword-spacing: 2
|
||||
key-spacing:
|
||||
- 2
|
||||
-
|
||||
beforeColon: false
|
||||
afterColon: true
|
||||
"space-before-function-paren": "off"
|
||||
"@typescript-eslint/space-before-function-paren":
|
||||
- 2
|
||||
-
|
||||
anonymous: "always"
|
||||
named: "never"
|
||||
space-before-blocks:
|
||||
- 2
|
||||
- "always"
|
||||
computed-property-spacing:
|
||||
- 2
|
||||
- "never"
|
||||
space-in-parens:
|
||||
- 2
|
||||
- "never"
|
||||
space-unary-ops: 2
|
||||
spaced-comment: "error"
|
||||
|
||||
max-nested-callbacks:
|
||||
- 1
|
||||
- 5
|
||||
max-depth:
|
||||
- 1
|
||||
- 6
|
||||
max-len:
|
||||
- 2
|
||||
- 120
|
||||
- 4
|
||||
-
|
||||
ignoreUrls: true
|
||||
ignoreComments: true
|
||||
max-params:
|
||||
- 1
|
||||
- 15
|
||||
|
||||
space-infix-ops: 2
|
||||
dot-notation:
|
||||
- 2
|
||||
-
|
||||
allowKeywords: true
|
||||
allowPattern: "^catch$"
|
||||
|
||||
arrow-spacing: 2
|
||||
constructor-super: 2
|
||||
no-confusing-arrow:
|
||||
- 2
|
||||
-
|
||||
allowParens: true
|
||||
no-class-assign: 2
|
||||
no-const-assign: 2
|
||||
# no-dupe-class-members: 2
|
||||
no-this-before-super: 0
|
||||
no-var: 2
|
||||
no-duplicate-imports: 2
|
||||
prefer-rest-params: 0
|
||||
unicode-bom: 2
|
||||
max-statements-per-line: 2
|
||||
|
||||
no-useless-constructor: 0
|
||||
|
||||
"func-call-spacing": "off"
|
||||
"@typescript-eslint/func-call-spacing": "error"
|
||||
|
||||
"no-unused-vars": "off"
|
||||
"@typescript-eslint/no-unused-vars":
|
||||
- 1
|
||||
-
|
||||
vars: "local"
|
||||
args: "none"
|
||||
# Avoid dangerous usage of globals.
|
||||
"no-restricted-globals":
|
||||
- 2
|
||||
- "event"
|
||||
- "name"
|
||||
- "length"
|
||||
- "orientation"
|
||||
- "top"
|
||||
- "parent"
|
||||
- "location"
|
||||
- "closed"
|
3
echarts-master/.gitattributes
vendored
Normal file
3
echarts-master/.gitattributes
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
# for pull request size bot
|
||||
# excludes all files from test directory
|
||||
test/** linguist-generated=true
|
103
echarts-master/.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
103
echarts-master/.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
@ -0,0 +1,103 @@
|
||||
name: Bug Report
|
||||
description: Report a bug to Apache ECharts
|
||||
title: "[Bug] "
|
||||
labels: [bug]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
The issue list is reserved exclusively for bug reports and feature requests.
|
||||
|
||||
For usage questions, please use the following resources:
|
||||
|
||||
- Read the [docs](https://echarts.apache.org/option.html)
|
||||
- Find in [examples](https://echarts.apache.org/examples/)
|
||||
- Look for / ask questions on [Stack Overflow](https://stackoverflow.com/questions/tagged/echarts)
|
||||
|
||||
For non-technical support or general questions, you can email [dev@echarts.apache.org](mailto:dev@echarts.apache.org). And don't forget to subscribe to our [mailing list](https://echarts.apache.org/maillist.html) to get updated with the project.
|
||||
|
||||
Also try to search for your issue - it may have already been answered or even fixed in the development branch. However, if you find that an old, closed issue still persists in the latest version, you should open a new issue using the form below instead of commenting on the old issue.
|
||||
|
||||
# - type: checkboxes
|
||||
# attributes:
|
||||
# label: Is there an existing issue for this?
|
||||
# description: Please search to see if an issue already exists for the bug you encountered.
|
||||
# options:
|
||||
# - label: I have searched the existing issues
|
||||
# required: true
|
||||
|
||||
- type: input
|
||||
attributes:
|
||||
label: Version
|
||||
description: |
|
||||
Check if the issue is reproducible with the latest stable version of Apache ECharts.
|
||||
placeholder: |
|
||||
e.g. 5.2.2
|
||||
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
attributes:
|
||||
label: Link to Minimal Reproduction
|
||||
description: |
|
||||
If the reproduction does not need a build setup, please provide a link to [Official Editor](https://echarts.apache.org/examples/editor.html), [JSFiddle](https://jsfiddle.net/plainheart/e46ozpqj/7/), [JSBin](https://jsbin.com/) or [CodePen](https://codepen.io/Ovilia/pen/dyYWXWM). If it requires a build setup, you can use [CodeSandbox](https://codesandbox.io/s/echarts-basic-example-template-mpfz1s) or provide a GitHub repo.
|
||||
The reproduction should be **minimal** - i.e. it should contain only the bare minimum amount of code needed to show the bug.
|
||||
Please do not just fill in a random link. The issue will be closed if no valid reproduction is provided. [Why?](https://antfu.me/posts/why-reproductions-are-required)
|
||||
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Steps to Reproduce
|
||||
description: |
|
||||
What do we need to do after opening your repo in order to make the bug happen? Clear and concise reproduction instructions are important for us to be able to triage your issue in a timely manner. Note that you can use [Markdown](https://guides.github.com/features/mastering-markdown/) to format lists and code.
|
||||
|
||||
placeholder: |
|
||||
1. How do you create the chart.
|
||||
2. What's the chart option
|
||||
3. User interactions before the error happens.
|
||||
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Current Behavior
|
||||
description: A concise description of what you're experiencing.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Expected Behavior
|
||||
description: A concise description of what you expected to happen.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Environment
|
||||
description: |
|
||||
e.g.
|
||||
- **OS**: macOS Monterey
|
||||
- **Browser**: Chrome 96.0.4664.55
|
||||
- **Framework** Vue@3
|
||||
value: |
|
||||
- OS:
|
||||
- Browser:
|
||||
- Framework:
|
||||
render: markdown
|
||||
|
||||
validations:
|
||||
required: false
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Any additional comments?
|
||||
description: |
|
||||
e.g. some background/context of how you ran into this bug.
|
||||
|
||||
validations:
|
||||
required: false
|
6
echarts-master/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
6
echarts-master/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
blank_issues_enabled: false
|
||||
|
||||
# contact_links:
|
||||
# - name: Apache ECharts Doc
|
||||
# url: https://echarts.apache.org/option.html
|
||||
# about: Please search question here before opening a new issue
|
39
echarts-master/.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
39
echarts-master/.github/ISSUE_TEMPLATE/feature_request.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
name: Feature Request
|
||||
description: Request a new feature from Apache ECharts
|
||||
title: "[Feature] "
|
||||
labels: [new-feature]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
The issue list is reserved exclusively for bug reports and feature requests.
|
||||
|
||||
For usage questions, please use the following resources:
|
||||
|
||||
- Read the [docs](https://echarts.apache.org/option.html)
|
||||
- Find in [examples](https://echarts.apache.org/examples/)
|
||||
- Look for / ask questions on [Stack Overflow](https://stackoverflow.com/questions/tagged/echarts)
|
||||
|
||||
For non-technical support or general questions, you can email [dev@echarts.apache.org](mailto:dev@echarts.apache.org). And don't forget to subscribe to our [mailing list](https://echarts.apache.org/maillist.html) to get updated with the project.
|
||||
|
||||
Also try to search for your issue - it may have already been answered or even fixed in the development branch. However, if you find that an old, closed issue still persists in the latest version, you should open a new issue using the form below instead of commenting on the old issue.
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: What problem does this feature solve?
|
||||
description: |
|
||||
Explain your use case, context, and rationale behind this feature request. More importantly, what is the end user experience you are trying to build that led to the need for this feature?
|
||||
|
||||
An important design goal of ECharts is keeping the API surface small and straightforward. In general, we only consider adding new features that solve a problem that cannot be easily dealt with using existing APIs (i.e. not just an alternative way of doing things that can already be done). The problem should also be common enough to justify the addition.
|
||||
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: What does the proposed API look like?
|
||||
description: Describe how you propose to solve the problem and provide code samples of how the API would work once implemented. Note that you can use [Markdown](https://docs.github.com/en/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) to format your code blocks.
|
||||
|
||||
|
||||
validations:
|
||||
required: true
|
72
echarts-master/.github/pull_request_template.md
vendored
Normal file
72
echarts-master/.github/pull_request_template.md
vendored
Normal file
@ -0,0 +1,72 @@
|
||||
<!-- Please fill in the following information to help us review your PR more efficiently. -->
|
||||
|
||||
## Brief Information
|
||||
|
||||
This pull request is in the type of:
|
||||
|
||||
- [ ] bug fixing
|
||||
- [ ] new feature
|
||||
- [ ] others
|
||||
|
||||
|
||||
|
||||
### What does this PR do?
|
||||
|
||||
<!-- USE ONE SENTENCE TO DESCRIBE WHAT THIS PR DOES. -->
|
||||
|
||||
|
||||
|
||||
### Fixed issues
|
||||
|
||||
<!--
|
||||
- #xxxx: ...
|
||||
-->
|
||||
|
||||
|
||||
## Details
|
||||
|
||||
### Before: What was the problem?
|
||||
|
||||
<!-- DESCRIBE THE BUG OR REQUIREMENT HERE. -->
|
||||
|
||||
<!-- ADD SCREENSHOT HERE IF APPLICABLE. -->
|
||||
|
||||
|
||||
|
||||
### After: How does it behave after the fixing?
|
||||
|
||||
<!-- THE RESULT AFTER FIXING AND A SIMPLE EXPLANATION ABOUT HOW IT IS FIXED. -->
|
||||
|
||||
<!-- ADD SCREENSHOT HERE IF APPLICABLE. -->
|
||||
|
||||
|
||||
|
||||
## Document Info
|
||||
|
||||
One of the following should be checked.
|
||||
|
||||
- [ ] This PR doesn't relate to document changes
|
||||
- [ ] The document should be updated later
|
||||
- [ ] The document changes have been made in apache/echarts-doc#xxx
|
||||
|
||||
|
||||
|
||||
## Misc
|
||||
|
||||
### ZRender Changes
|
||||
|
||||
- [ ] This PR depends on ZRender changes (ecomfe/zrender#xxx).
|
||||
|
||||
### Related test cases or examples to use the new APIs
|
||||
|
||||
N.A.
|
||||
|
||||
|
||||
|
||||
## Others
|
||||
|
||||
### Merging options
|
||||
|
||||
- [ ] Please squash the commits into a single one when merging.
|
||||
|
||||
### Other information
|
3
echarts-master/.github/workflows/.scripts/package.json
vendored
Normal file
3
echarts-master/.github/workflows/.scripts/package.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"type": "commonjs"
|
||||
}
|
93
echarts-master/.github/workflows/.scripts/update-notice-year.js
vendored
Normal file
93
echarts-master/.github/workflows/.scripts/update-notice-year.js
vendored
Normal file
@ -0,0 +1,93 @@
|
||||
/**
|
||||
* @typedef {import('@octokit/rest').Octokit} Octokit
|
||||
* @typedef {import('@actions/github')['context']} Context
|
||||
*/
|
||||
|
||||
module.exports = async function updateNoticeYear(
|
||||
/** @type {{ octokit: Octokit, context: Context }} */
|
||||
{ octokit, context }
|
||||
) {
|
||||
const now = new Date()
|
||||
// Change to UTC+8
|
||||
now.setHours(now.getHours() + 8)
|
||||
const newYear = now.getFullYear()
|
||||
console.log('Prepare to update notice year to', newYear)
|
||||
|
||||
const noticeContent = `Apache ECharts
|
||||
Copyright 2017-${newYear} The Apache Software Foundation
|
||||
|
||||
This product includes software developed at
|
||||
The Apache Software Foundation (https://www.apache.org/).`
|
||||
|
||||
const repoCtx = context.repo
|
||||
|
||||
const repoInfo = (await octokit.rest.repos.get(repoCtx)).data
|
||||
const defaultBranchName = repoInfo.default_branch
|
||||
const remoteNoticeFile = (await octokit.rest.repos.getContent({
|
||||
...repoCtx,
|
||||
path: 'NOTICE',
|
||||
ref: defaultBranchName
|
||||
})).data
|
||||
const remoteNoticeContent = base64ToUtf8(remoteNoticeFile.content)
|
||||
if (remoteNoticeContent === noticeContent) {
|
||||
console.log('NOTICE year is already updated.')
|
||||
return
|
||||
}
|
||||
|
||||
console.log('Ready to update the NOTICE file:\n' + noticeContent)
|
||||
|
||||
const defaultBranch = (await octokit.rest.repos.getBranch({
|
||||
...repoCtx,
|
||||
branch: defaultBranchName
|
||||
})).data
|
||||
|
||||
const newBranchName = `bot/update-notice-year/${newYear}`
|
||||
await octokit.rest.git.createRef({
|
||||
...repoCtx,
|
||||
ref: `refs/heads/${newBranchName}`,
|
||||
sha: defaultBranch.commit.sha
|
||||
})
|
||||
console.log('Created a new branch:', newBranchName)
|
||||
|
||||
await octokit.rest.repos.createOrUpdateFileContents({
|
||||
...repoCtx,
|
||||
path: 'NOTICE',
|
||||
message: `chore: update NOTICE year to ${newYear}`,
|
||||
content: utf8ToBase64(noticeContent),
|
||||
sha: remoteNoticeFile.sha,
|
||||
branch: newBranchName
|
||||
})
|
||||
|
||||
console.log('Updated the NOTICE file on the new branch')
|
||||
|
||||
const pr = (await octokit.rest.pulls.create({
|
||||
...repoCtx,
|
||||
head: newBranchName,
|
||||
base: defaultBranchName,
|
||||
maintainer_can_modify: true,
|
||||
title: `chore: update NOTICE year to ${newYear}`,
|
||||
body: `## Brief Information
|
||||
|
||||
This pull request is in the type of:
|
||||
|
||||
- [ ] bug fixing
|
||||
- [ ] new feature
|
||||
- [x] others
|
||||
|
||||
### What does this PR do?
|
||||
|
||||
Update notice year to ${newYear}. 💖
|
||||
|
||||
Happy new year! 祝大家新年快乐!🎇`
|
||||
})).data
|
||||
|
||||
console.log(`Opened PR #${pr.number} for updating the NOTICE file`)
|
||||
}
|
||||
|
||||
function utf8ToBase64(data) {
|
||||
return Buffer.from(data, 'utf-8').toString('base64')
|
||||
}
|
||||
|
||||
function base64ToUtf8(data) {
|
||||
return Buffer.from(data, 'base64').toString('utf-8')
|
||||
}
|
129
echarts-master/.github/workflows/ci.yml
vendored
Normal file
129
echarts-master/.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,129 @@
|
||||
name: Node CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened, synchronize]
|
||||
|
||||
concurrency:
|
||||
# Note that the `teardown-pr-preview` workflow needs the same group name
|
||||
# to cancel the running `ci` workflows
|
||||
group: ${{ github.workflow }}-${{ github.event.number }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x]
|
||||
|
||||
steps:
|
||||
- name: Fetch commit count
|
||||
env:
|
||||
PR_COMMIT_COUNT: ${{ github.event.pull_request.commits }}
|
||||
run: |
|
||||
echo "FETCH_DEPTH=$(($PR_COMMIT_COUNT + 1))" >> $GITHUB_ENV
|
||||
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: ${{ env.FETCH_DEPTH }}
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Cache node modules
|
||||
id: cache-dep
|
||||
uses: actions/cache@v4
|
||||
env:
|
||||
cache-name: cache-node-modules
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ runner.os }}-lint-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||
|
||||
- name: Install dependencies
|
||||
if: steps.cache-dep.outputs.cache-hit != 'true'
|
||||
run: npm ci
|
||||
|
||||
- name: Collect changed files
|
||||
run: |
|
||||
mkdir ~/tmp/
|
||||
git diff ${{ github.event.pull_request.base.sha }} ${{ github.sha }} --diff-filter=ACM --name-only --relative '*src/**/*.ts' > ~/tmp/changed_files
|
||||
echo -e "Changed files: \n$(cat ~/tmp/changed_files)"
|
||||
|
||||
- name: Lint
|
||||
run: npx eslint $(cat ~/tmp/changed_files)
|
||||
|
||||
- name: Check types
|
||||
run: npm run checktype
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Cache node modules
|
||||
id: cache-dep
|
||||
uses: actions/cache@v4
|
||||
env:
|
||||
cache-name: cache-node-modules
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||
|
||||
- name: Install dependencies
|
||||
if: steps.cache-dep.outputs.cache-hit != 'true'
|
||||
run: npm ci
|
||||
|
||||
- name: Unit Test
|
||||
run: npm run test
|
||||
|
||||
- name: Build release
|
||||
run: npm run release
|
||||
|
||||
- name: Test generated DTS
|
||||
run: npm run test:dts
|
||||
|
||||
- name: Pack npm tarball
|
||||
if: ${{ github.repository_owner == 'apache' }}
|
||||
id: pack-tarball
|
||||
run: |
|
||||
export PR_PREVIEW_DIR='echarts-pr-preview'
|
||||
mkdir -p $PR_PREVIEW_DIR
|
||||
npm pack -pack-destination $PR_PREVIEW_DIR
|
||||
echo "PR_PREVIEW_DIR=$PR_PREVIEW_DIR" >> $GITHUB_ENV
|
||||
|
||||
- name: Save PR metadata and dist files
|
||||
if: ${{ steps.pack-tarball.outcome == 'success' }}
|
||||
id: save-pr-data
|
||||
env:
|
||||
PR_NUMBER: ${{ github.event.number }}
|
||||
PR_COMMIT_SHA: ${{ github.event.pull_request.head.sha }}
|
||||
PR_PREVIEW_DIR: ${{ env.PR_PREVIEW_DIR }}
|
||||
run: |
|
||||
cd $PR_PREVIEW_DIR
|
||||
echo $PR_NUMBER > ./pr_number
|
||||
echo $PR_COMMIT_SHA > ./pr_commit_sha
|
||||
find . -type f -regex ".*\.tgz" -exec tar xvzf {} \;
|
||||
rm -f *.tgz
|
||||
echo -e "Dist files: \n$(ls -l)"
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: ${{ steps.save-pr-data.outcome == 'success' }}
|
||||
with:
|
||||
name: pr_preview
|
||||
path: ${{ env.PR_PREVIEW_DIR }}
|
||||
retention-days: 1
|
||||
if-no-files-found: error
|
43
echarts-master/.github/workflows/nightly-next.yml
vendored
Normal file
43
echarts-master/.github/workflows/nightly-next.yml
vendored
Normal file
@ -0,0 +1,43 @@
|
||||
name: Publish Nightly Next
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '10 9 * * *' # After zrender nightly published
|
||||
# committers can manually trigger with workflow_dispatch
|
||||
workflow_dispatch: {}
|
||||
repository_dispatch:
|
||||
types: publish-nightly-next
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.repository_owner == 'apache' }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
ref: next
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
registry-url: https://registry.npmjs.org/
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Setup and publish nightly
|
||||
run: |
|
||||
node build/nightly/prepare.js --next
|
||||
npm i zrender@npm:zrender-nightly@next
|
||||
npm ci
|
||||
npm ls zrender
|
||||
node build/nightly/post.js
|
||||
npm run release
|
||||
npm run test
|
||||
npm run test:dts
|
||||
npm publish --tag next
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
41
echarts-master/.github/workflows/nightly.yml
vendored
Normal file
41
echarts-master/.github/workflows/nightly.yml
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
name: Publish Nightly
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 9 * * *' # After zrender nightly published
|
||||
# committers can manually trigger with workflow_dispatch
|
||||
workflow_dispatch: {}
|
||||
repository_dispatch:
|
||||
types: publish-nightly
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.repository_owner == 'apache' }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
registry-url: https://registry.npmjs.org/
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Setup and publish nightly
|
||||
run: |
|
||||
node build/nightly/prepare.js
|
||||
npm i zrender@npm:zrender-nightly
|
||||
npm ci
|
||||
npm ls zrender
|
||||
node build/nightly/post.js
|
||||
npm run release
|
||||
npm run test
|
||||
npm run test:dts
|
||||
npm publish
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
78
echarts-master/.github/workflows/pr-preview.yml
vendored
Normal file
78
echarts-master/.github/workflows/pr-preview.yml
vendored
Normal file
@ -0,0 +1,78 @@
|
||||
name: Deploy PR Preview
|
||||
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ['Node CI']
|
||||
types: [completed]
|
||||
|
||||
jobs:
|
||||
on-success:
|
||||
if: ${{ github.repository_owner == 'apache' }}
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Determine if workflow build job is successful
|
||||
id: check-build-success
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
result-encoding: string
|
||||
script: |
|
||||
const jobsRes = await github.rest.actions.listJobsForWorkflowRun({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
run_id: context.payload.workflow_run.id
|
||||
});
|
||||
return jobsRes.data.jobs.some((job) => job.name.includes('build') && job.conclusion === 'success');
|
||||
|
||||
outputs:
|
||||
SHOULD_DEPLOY: ${{ steps.check-build-success.outputs.result }}
|
||||
|
||||
deploy:
|
||||
needs: [on-success]
|
||||
if: ${{ needs.on-success.outputs.SHOULD_DEPLOY == 'true' }}
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Install action dependencies
|
||||
run: |
|
||||
mkdir .actions
|
||||
cd .actions
|
||||
git clone --depth=1 https://github.com/dawidd6/action-download-artifact.git
|
||||
git clone --depth=1 https://github.com/plainheart/maintain-one-comment.git
|
||||
|
||||
- name: Fetch PR dist files
|
||||
uses: ./.actions/action-download-artifact
|
||||
with:
|
||||
workflow: ${{ github.event.workflow.id }}
|
||||
run_id: ${{ github.event.workflow_run.id }}
|
||||
name: pr_preview
|
||||
path: pr-dist
|
||||
if_no_artifact_found: fail
|
||||
|
||||
- name: Output PR metadata
|
||||
id: pr-metadata
|
||||
working-directory: pr-dist
|
||||
run: |
|
||||
echo "NUMBER=$(cat pr_number)" >> $GITHUB_OUTPUT
|
||||
echo "COMMIT_SHA=$(cat pr_commit_sha)" >> $GITHUB_OUTPUT
|
||||
echo "COMMIT_SHA_SHORT=$(cat pr_commit_sha | cut -c 1-7)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Deploy dist files
|
||||
env:
|
||||
PR_NUMBER: ${{ steps.pr-metadata.outputs.NUMBER }}
|
||||
SURGE_TOKEN: ${{ secrets.SURGE_TOKEN }}
|
||||
working-directory: pr-dist
|
||||
run: |
|
||||
export SURGE_DOMAIN=https://echarts-pr-$PR_NUMBER.surge.sh
|
||||
npx surge --project ./package --domain $SURGE_DOMAIN --token $SURGE_TOKEN
|
||||
|
||||
- name: Create comment for PR preview
|
||||
uses: ./.actions/maintain-one-comment
|
||||
env:
|
||||
PR_NUMBER: ${{ steps.pr-metadata.outputs.NUMBER }}
|
||||
COMMIT_SHA_SHORT: ${{ steps.pr-metadata.outputs.COMMIT_SHA_SHORT }}
|
||||
with:
|
||||
body: |
|
||||
The changes brought by this PR can be previewed at: https://echarts.apache.org/examples/editor?version=PR-${{ env.PR_NUMBER }}@${{ env.COMMIT_SHA_SHORT }}
|
||||
body-include: '<!-- ECHARTS_PR_PREVIEW -->'
|
||||
number: ${{ env.PR_NUMBER }}
|
137
echarts-master/.github/workflows/source-release.yml
vendored
Normal file
137
echarts-master/.github/workflows/source-release.yml
vendored
Normal file
@ -0,0 +1,137 @@
|
||||
name: Source Release
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [prereleased]
|
||||
|
||||
jobs:
|
||||
materials:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.repository_owner == 'apache' }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Prepare env
|
||||
run: |
|
||||
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
||||
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v4
|
||||
env:
|
||||
cache-name: cache-node-modules
|
||||
with:
|
||||
# npm cache files are stored in `~/.npm` on Linux/macOS
|
||||
path: ~/.npm
|
||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||
|
||||
- name: Prepare release materials
|
||||
run: |
|
||||
npm i
|
||||
node build/source-release/prepareReleaseMaterials.js \
|
||||
--rcversion ${{env.RELEASE_VERSION}} \
|
||||
--commit ${{github.sha}} \
|
||||
--repo ${{github.repository}} \
|
||||
--out tmp/materials
|
||||
|
||||
- name: Archive materials
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: apache-echarts-${{env.RELEASE_VERSION}}-release-materials
|
||||
path: |
|
||||
tmp/materials/*
|
||||
|
||||
source:
|
||||
runs-on: ubuntu-latest
|
||||
needs: materials
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Prepare env
|
||||
run: |
|
||||
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
||||
|
||||
# Get RELEASE_NOTE.txt and pack it into zip.
|
||||
- name: Download materials
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: apache-echarts-${{env.RELEASE_VERSION}}-release-materials
|
||||
|
||||
# TODO Check release version is RC
|
||||
|
||||
# Archive before run others to avoid packing unknown files.
|
||||
- name: Archive source release
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: apache-echarts-${{env.RELEASE_VERSION}}-src
|
||||
path: |
|
||||
index.d.ts
|
||||
src/
|
||||
extension-src/
|
||||
ssr/client/src/
|
||||
licenses/
|
||||
theme/
|
||||
build/
|
||||
!build/source-release
|
||||
package.json
|
||||
package-lock.json
|
||||
LICENSE
|
||||
NOTICE
|
||||
README.md
|
||||
tsconfig.json
|
||||
test/ut
|
||||
test/types
|
||||
test/check-build.html
|
||||
RELEASE_NOTE.txt
|
||||
|
||||
|
||||
validate-source:
|
||||
runs-on: ubuntu-latest
|
||||
needs: source
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x]
|
||||
|
||||
steps:
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Prepare env
|
||||
run: |
|
||||
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
||||
|
||||
- name: Download source release
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: apache-echarts-${{env.RELEASE_VERSION}}-src
|
||||
path: tmp/echarts
|
||||
|
||||
- name: Build source release
|
||||
run: |
|
||||
npm ci
|
||||
npm run release
|
||||
npm run test
|
||||
npm run test:dts
|
||||
working-directory: tmp/echarts
|
31
echarts-master/.github/workflows/stale.yml
vendored
Normal file
31
echarts-master/.github/workflows/stale.yml
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
name: Closing Stale Issues
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 21 * * *'
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.repository_owner == 'apache' }}
|
||||
steps:
|
||||
- name: Close Stale Issues
|
||||
uses: actions/stale@v9
|
||||
with:
|
||||
days-before-stale: 730
|
||||
days-before-close: 7
|
||||
stale-issue-label: stale
|
||||
stale-pr-label: stale
|
||||
stale-issue-message: 'This issue has been automatically marked as stale because it did not have recent activity. It will be closed in 7 days if no further activity occurs. If you wish not to mark it as stale, please leave a comment in this issue.'
|
||||
close-issue-message: 'This issue has been automatically closed because it did not have recent activity. If this remains to be a problem with the latest version of Apache ECharts, please open a new issue and link this to it. Thanks!'
|
||||
close-issue-reason: 'not_planned'
|
||||
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs. If you wish not to mark it as stale, please leave a comment in this PR. We are sorry for this but 2 years is a long time and the code base has been changed a lot. Thanks for your contribution anyway.'
|
||||
close-pr-message: 'This PR has been automatically closed because it has not had recent activity. Sorry for that and we are looking forward to your next contribution.'
|
||||
exempt-issue-labels: 'FAQ,priority: high'
|
||||
exempt-all-milestones: true
|
||||
operations-per-run: 500
|
||||
ascending: true
|
30
echarts-master/.github/workflows/teardown-pr-preview.yml
vendored
Normal file
30
echarts-master/.github/workflows/teardown-pr-preview.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: Teardown PR Preview
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
teardown-pr-preview:
|
||||
if: ${{ github.repository_owner == 'apache' && github.event.action == 'closed' && github.event.pull_request.merged != true }}
|
||||
concurrency:
|
||||
# to cancel running `ci` workflows in current PR
|
||||
group: 'Node CI-${{ github.event.number }}'
|
||||
cancel-in-progress: true
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install action dependencies
|
||||
run: git clone --depth=1 https://github.com/plainheart/maintain-one-comment.git
|
||||
|
||||
- name: Delete PR preview comment
|
||||
uses: ./maintain-one-comment
|
||||
with:
|
||||
body-include: '<!-- ECHARTS_PR_PREVIEW -->'
|
||||
delete: true
|
||||
number: ${{ github.event.number }}
|
||||
|
||||
- name: Teardown closed PR preview
|
||||
continue-on-error: true
|
||||
run: |
|
||||
export SURGE_DOMAIN='https://echarts-pr-${{ github.event.number }}.surge.sh'
|
||||
npx surge teardown $SURGE_DOMAIN --token ${{ secrets.SURGE_TOKEN }}
|
24
echarts-master/.github/workflows/update-notice-year.yml
vendored
Normal file
24
echarts-master/.github/workflows/update-notice-year.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
name: Update NOTICE year
|
||||
|
||||
on:
|
||||
schedule:
|
||||
# 1/1 00:00 UTC+8
|
||||
- cron: '0 16 31 12 *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
update-notice-year:
|
||||
if: ${{ github.repository_owner == 'apache' }}
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
sparse-checkout: |
|
||||
.github/workflows/.scripts
|
||||
|
||||
- uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
const updateNoticeYear = require('.github/workflows/.scripts/update-notice-year.js')
|
||||
await updateNoticeYear({ octokit: github, context })
|
212
echarts-master/.gitignore
vendored
Normal file
212
echarts-master/.gitignore
vendored
Normal file
@ -0,0 +1,212 @@
|
||||
#################
|
||||
## Eclipse
|
||||
#################
|
||||
|
||||
*.pydevproject
|
||||
.project
|
||||
.metadata
|
||||
bin/
|
||||
tmp/
|
||||
*.tmp
|
||||
*.bak
|
||||
*.swp
|
||||
*~.nib
|
||||
.svn
|
||||
local.properties
|
||||
.classpath
|
||||
.class
|
||||
.settings/
|
||||
.loadpath
|
||||
|
||||
# External tool builders
|
||||
.externalToolBuilders/
|
||||
|
||||
# Locally stored "Eclipse launch configurations"
|
||||
*.launch
|
||||
|
||||
# CDT-specific
|
||||
.cproject
|
||||
|
||||
# PDT-specific
|
||||
.buildpath
|
||||
|
||||
|
||||
#################
|
||||
## Visual Studio
|
||||
#################
|
||||
|
||||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
|
||||
# User-specific files
|
||||
*.suo
|
||||
*.user
|
||||
*.sln.docstates
|
||||
|
||||
# Build results
|
||||
[Dd]ebug/
|
||||
[Rr]elease/
|
||||
*_i.c
|
||||
*_p.c
|
||||
*.ilk
|
||||
*.meta
|
||||
*.obj
|
||||
*.pch
|
||||
*.pdb
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
*.tlh
|
||||
*.tmp
|
||||
*.vspscc
|
||||
.builds
|
||||
*.dotCover
|
||||
|
||||
## TODO: If you have NuGet Package Restore enabled, uncomment this
|
||||
#packages/
|
||||
|
||||
# Visual C++ cache files
|
||||
ipch/
|
||||
*.aps
|
||||
*.ncb
|
||||
*.opensdf
|
||||
*.sdf
|
||||
|
||||
# Visual Studio profiler
|
||||
*.psess
|
||||
*.vsp
|
||||
|
||||
# ReSharper is a .NET coding add-in
|
||||
_ReSharper*
|
||||
|
||||
# Installshield output folder
|
||||
[Ee]xpress
|
||||
|
||||
# DocProject is a documentation generator add-in
|
||||
DocProject/buildhelp/
|
||||
DocProject/Help/*.HxT
|
||||
DocProject/Help/*.HxC
|
||||
DocProject/Help/*.hhc
|
||||
DocProject/Help/*.hhk
|
||||
DocProject/Help/*.hhp
|
||||
DocProject/Help/Html2
|
||||
DocProject/Help/html
|
||||
|
||||
# Click-Once directory
|
||||
publish
|
||||
|
||||
# Others
|
||||
[Bb]in
|
||||
[Oo]bj
|
||||
sql
|
||||
TestResults
|
||||
*.Cache
|
||||
ClientBin
|
||||
stylecop.*
|
||||
~$*
|
||||
*.dbmdl
|
||||
Generated_Code #added for RIA/Silverlight projects
|
||||
|
||||
# Backup & report files from converting an old project file to a newer
|
||||
# Visual Studio version. Backup files are not needed, because we have git ;-)
|
||||
_UpgradeReport_Files/
|
||||
Backup*/
|
||||
UpgradeLog*.XML
|
||||
|
||||
|
||||
|
||||
############
|
||||
## Windows
|
||||
############
|
||||
|
||||
# Windows image file caches
|
||||
Thumbs.db
|
||||
|
||||
# Folder config file
|
||||
Desktop.ini
|
||||
|
||||
|
||||
#############
|
||||
## Python
|
||||
#############
|
||||
|
||||
*.py[co]
|
||||
|
||||
# Packages
|
||||
*.egg
|
||||
*.egg-info
|
||||
# dist
|
||||
eggs
|
||||
parts
|
||||
bin
|
||||
var
|
||||
sdist
|
||||
develop-eggs
|
||||
.installed.cfg
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
coverage
|
||||
.coverage
|
||||
.tox
|
||||
|
||||
#Translations
|
||||
*.mo
|
||||
|
||||
#Mr Developer
|
||||
.mr.developer.cfg
|
||||
|
||||
# Mac crap
|
||||
.DS_Store
|
||||
.idea
|
||||
.ideaout
|
||||
rat.iml
|
||||
|
||||
node_modules
|
||||
|
||||
test/data/map/tool
|
||||
test/data/map/raw
|
||||
theme/thumb
|
||||
pre-publish-tmp
|
||||
todo
|
||||
*.log
|
||||
*.sublime-workspace
|
||||
*.sublime-project
|
||||
|
||||
# Result of node.js perf
|
||||
*.asm
|
||||
|
||||
# Distribution files
|
||||
/esm
|
||||
/echarts.all.js
|
||||
/echarts.simple.js
|
||||
/echarts.common.js
|
||||
/echarts.blank.js
|
||||
/lib
|
||||
/types
|
||||
/index.js
|
||||
/index.simple.js
|
||||
/index.common.js
|
||||
/index.blank.js
|
||||
/extension-esm
|
||||
/extension
|
||||
/ssr/client/lib
|
||||
/ssr/client/types
|
||||
/ssr/client/index.js
|
||||
/ssr/client/index.d.ts
|
||||
/core.js
|
||||
/core.d.ts
|
||||
/charts.js
|
||||
/charts.d.ts
|
||||
/components.js
|
||||
/components.d.ts
|
||||
/renderers.js
|
||||
/renderers.d.ts
|
||||
/features.js
|
||||
/features.d.ts
|
||||
*.tgz
|
56
echarts-master/.headerignore
Normal file
56
echarts-master/.headerignore
Normal file
@ -0,0 +1,56 @@
|
||||
# Only support regexp, testing against each relative file path
|
||||
# based on the echart base directory. And the pattern should
|
||||
# match the relative path completely.
|
||||
|
||||
node_modules
|
||||
.*\.git
|
||||
.*\.github
|
||||
.*\.editorconfig
|
||||
.*\.gitignore
|
||||
.*\.jshintrc
|
||||
.*\.jshintrc-dist
|
||||
.*\.npmignore
|
||||
.*\.ratignore
|
||||
.*\.headerignore
|
||||
.*\.DS_Store
|
||||
.*\.idea
|
||||
.*rat\.iml
|
||||
__MAC_OS
|
||||
.*README.md
|
||||
.*MANIFEST\.txt
|
||||
DISCLAIMER
|
||||
NOTICE
|
||||
KEYS
|
||||
LICENSE
|
||||
LICENSE-.+
|
||||
licenses
|
||||
map/js
|
||||
map/json
|
||||
benchmark/dep/*
|
||||
test/ut/lib
|
||||
test/data$
|
||||
test/lib/esl\.js
|
||||
test/lib/perlin\.js
|
||||
test/lib/countup\.js
|
||||
.*jquery\.min\.js
|
||||
.*rollup\.browser\.js
|
||||
.*configure
|
||||
.+\.json
|
||||
.+\.map
|
||||
.+\.gexf
|
||||
.+\.jar
|
||||
.+\.bin
|
||||
.+\.csv
|
||||
.+\.png
|
||||
.+\.PNG
|
||||
.+\.jpg
|
||||
.+\.JPG
|
||||
.+\.jpeg
|
||||
.+\.JPEG
|
||||
.+\.gif
|
||||
.+\.GIF
|
||||
.+\.class
|
||||
types
|
||||
lib
|
||||
esm
|
||||
dist
|
5
echarts-master/.husky/pre-commit
Normal file
5
echarts-master/.husky/pre-commit
Normal file
@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env sh
|
||||
. "$(dirname -- "$0")/_/husky.sh"
|
||||
|
||||
npm run lint
|
||||
npm run checktype
|
70
echarts-master/.jshintrc-dist
Normal file
70
echarts-master/.jshintrc-dist
Normal file
@ -0,0 +1,70 @@
|
||||
{
|
||||
"bitwise": false,
|
||||
"camelcase": false,
|
||||
"curly": true,
|
||||
"eqeqeq": false,
|
||||
"forin": false,
|
||||
"immed": true,
|
||||
"latedef": false,
|
||||
"newcap": true,
|
||||
"noarg": false,
|
||||
"noempty": true,
|
||||
"nonew": true,
|
||||
"plusplus": false,
|
||||
"quotmark": "single",
|
||||
"regexp": false,
|
||||
"undef": true,
|
||||
"unused": "vars",
|
||||
"strict": false,
|
||||
"trailing": false,
|
||||
"maxparams": 20,
|
||||
"maxdepth": 6,
|
||||
"maxlen": 200,
|
||||
|
||||
"asi": false,
|
||||
"boss": false,
|
||||
"debug": false,
|
||||
"eqnull": true,
|
||||
"esversion": 3,
|
||||
"module": false,
|
||||
"evil": true,
|
||||
"expr": true,
|
||||
"funcscope": false,
|
||||
"globalstrict": false,
|
||||
"iterator": false,
|
||||
"lastsemic": false,
|
||||
"laxbreak": true,
|
||||
"laxcomma": false,
|
||||
"loopfunc": false,
|
||||
"multistr": false,
|
||||
"onecase": false,
|
||||
"proto": false,
|
||||
"regexdash": false,
|
||||
"scripturl": false,
|
||||
"smarttabs": false,
|
||||
"shadow": true,
|
||||
"sub": true,
|
||||
"supernew": false,
|
||||
"validthis": true,
|
||||
|
||||
"browser": true,
|
||||
"couch": false,
|
||||
"devel": true,
|
||||
"dojo": false,
|
||||
"jquery": true,
|
||||
"mootools": false,
|
||||
"node": false,
|
||||
"nonstandard": false,
|
||||
"prototypejs": false,
|
||||
"rhino": false,
|
||||
"wsh": false,
|
||||
|
||||
"nomen": false,
|
||||
"onevar": false,
|
||||
"passfail": false,
|
||||
"white": false,
|
||||
|
||||
"predef": [
|
||||
"global"
|
||||
]
|
||||
}
|
30
echarts-master/.lgtm.yml
Normal file
30
echarts-master/.lgtm.yml
Normal file
@ -0,0 +1,30 @@
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
path_classifiers:
|
||||
test:
|
||||
- test
|
||||
library:
|
||||
- benchmark/dep
|
||||
generated:
|
||||
- dist
|
||||
extraction:
|
||||
javascript:
|
||||
index:
|
||||
exclude:
|
||||
- dist
|
20
echarts-master/.npmignore
Normal file
20
echarts-master/.npmignore
Normal file
@ -0,0 +1,20 @@
|
||||
/test
|
||||
/map/tool
|
||||
/map/raw
|
||||
/theme/tool
|
||||
/theme/thumb
|
||||
/todo
|
||||
/npm-debug.log
|
||||
/benchmark
|
||||
/src
|
||||
/ssr/client/src
|
||||
/extension-src
|
||||
/build
|
||||
/tsconfig.json
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
/asset/contributing-inspect.png
|
||||
CONTRIBUTING.md
|
||||
# Hidden files
|
||||
.*
|
4
echarts-master/.vscode/settings.json
vendored
Normal file
4
echarts-master/.vscode/settings.json
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"typescript.tsdk": "./node_modules/typescript/lib",
|
||||
"typescript.enablePromptUseWorkspaceTsdk": true
|
||||
}
|
69
echarts-master/CONTRIBUTING.md
Normal file
69
echarts-master/CONTRIBUTING.md
Normal file
@ -0,0 +1,69 @@
|
||||
# Contributing
|
||||
|
||||
👍🎉 First off, thanks for taking the time to contribute! 🎉👍
|
||||
|
||||
Please check out the [Apache Code of Conduct](https://www.apache.org/foundation/policies/conduct.html) first.
|
||||
|
||||
## What can you do for the ECharts community?
|
||||
|
||||
Contributions can be made in varied ways:
|
||||
|
||||
- Help others with the issues
|
||||
- Help solve problems with the issues
|
||||
- Remind the authors to provide a demo if they are reporting a bug
|
||||
- Try to reproduce the problem as described in the issues
|
||||
- Make pull requests to fix bugs or implement new features
|
||||
- Improve or translate the documents
|
||||
- Discuss in the [mailing list](https://echarts.apache.org/en/maillist.html)
|
||||
- ...
|
||||
|
||||
## Issues
|
||||
|
||||
We have already prepared issue templates for bug reports and feature requests. If you want to fire an issue, just enter the [New issue](https://github.com/apache/echarts/issues/new/choose) page and select either of them to get started.
|
||||
|
||||
Additionally, before doing so, please search for similar questions in our [issues list](https://github.com/apache/echarts/issues?utf8=%E2%9C%93&q=is%3Aissue). If you are able to reproduce an issue found in a closed issue, please create a new issue and reference the closed one.
|
||||
|
||||
Please read the [documentation](http://echarts.apache.org/option.html) carefully before asking any questions.
|
||||
|
||||
Any questions in the form of *how can I use echarts to* or *how to use echarts x feature to* belong in [Stack Overflow](http://stackoverflow.com). Issues with questions like that in the issue tracker will be closed.
|
||||
|
||||
## Release Milestone Discussion
|
||||
|
||||
We will start the discussion about the bugs to fix and the features of each release in the [mailing list](https://echarts.apache.org/en/maillist.html). You may subscribe to our [mailing list](https://echarts.apache.org/en/maillist.html) to give your valuable advice in milestone discussions.
|
||||
|
||||
Regarding the release plan, we will release a minor version at the end of every month. Here is some detail.
|
||||
|
||||
1. Assume our current stable release is 4.3.0. We will start the discussion of the milestone of the release two versions ahead, which is 4.5.0 at the beginning of each month. At this time, we should also kick off the development of the next release, which is 4.4.0.
|
||||
2. Finish 4.4.0 development on about the 22nd of this month and start the testing. And the 4.5.0 milestone discussion is frozen and published on the [GitHub](https://github.com/apache/echarts/milestone/14).
|
||||
3. Vote in the mailing list for the 4.4.0 release at the end of this month.
|
||||
|
||||
## Pull Requests
|
||||
|
||||
Wiki: [How to make a pull request](https://github.com/apache/echarts/wiki/How-to-make-a-pull-request)
|
||||
|
||||
## How to Debug ECharts
|
||||
|
||||
Wiki: [How to setup the dev environment](https://github.com/apache/echarts/wiki/How-to-setup-the-dev-environment)
|
||||
|
||||
## Some hints about using code from other authors
|
||||
|
||||
+ About using some algorithms/formulas or inspired by others' work:
|
||||
+ We can be inspired by other people’s work. There is no problem with copying ideas and no problems associated with that as long as the code is entirely yours and you aren’t violating the license of the inspirational work. You can just follow "normal" source code rules.
|
||||
+ But when you copy the code, even parts of files, it must remain under the copyright of the original authors.
|
||||
+ What's the right thing to do for the public good here? I'll go with:
|
||||
+ Be transparent when implementing an existing idea/algorithm.
|
||||
+ Reference where that idea/algorithm came from.
|
||||
+ Use standard language when doing so (we need to define standard language).
|
||||
+ "inspired by", "learned from" and "references to" are vague concepts in copyright.
|
||||
+ If any copyrightable expression is copied from the existing idea/algorithm, compare its licensing to our licensing policies and include licensing accordingly.
|
||||
+ Check the original discussion about it at: https://lists.apache.org/list.html?legal-discuss@apache.org:lte=36M:echarts
|
||||
+ About adding the license/header of 3rd-party work:
|
||||
+ https://www.apache.org/legal/src-headers.html#3party
|
||||
+ Licenses that are compatible with the Apache license:
|
||||
+ BSD and MIT are compatible with the Apache license, but CC_BY_SA is not (https://apache.org/legal/resolved.html#cc-sa).
|
||||
+ Stack Overflow:
|
||||
+ before intending to copy code from Stack Overflow, we must check the following:
|
||||
+ https://apache.org/legal/resolved.html#stackoverflow
|
||||
+ https://issues.apache.org/jira/browse/LEGAL-471
|
||||
+ Wikipedia (and most Wikimedia Foundation projects):
|
||||
+ Wikipedia, and most Wikimedia Foundation projects, are licensed under CC 4.0 BY_SA (and sometimes GFDL) and are incompatible with the Apache license. Therefore, we should not copy code from Wikipedia or Wikimedia Foundation projects.
|
419
echarts-master/KEYS
Normal file
419
echarts-master/KEYS
Normal file
@ -0,0 +1,419 @@
|
||||
This file contains the PGP keys of various developers.
|
||||
Please don't use them for email unless you have to. Their main
|
||||
purpose is code signing.
|
||||
|
||||
Examples of importing this file in your keystore:
|
||||
gpg --import KEYS.txt
|
||||
(need pgp and other examples here)
|
||||
|
||||
Examples of adding your key to this file:
|
||||
pgp -kxa <your name> and append it to this file.
|
||||
(pgpk -ll <your name> && pgpk -xa <your name>) >> this file.
|
||||
(gpg --list-sigs <your name>
|
||||
&& gpg --armor --export <your name>) >> this file.
|
||||
|
||||
---------------------------------------
|
||||
pub rsa4096 2018-04-23 [SC]
|
||||
9B06D9B4FA37C4DD52725742747985D7E3CEB635
|
||||
uid [ultimate] Su Shuang (CODE SIGNING KEY) <sushuang@apache.org>
|
||||
sig 3 747985D7E3CEB635 2018-04-23 Su Shuang (CODE SIGNING KEY) <sushuang@apache.org>
|
||||
sub rsa4096 2018-04-23 [E]
|
||||
sig 747985D7E3CEB635 2018-04-23 Su Shuang (CODE SIGNING KEY) <sushuang@apache.org>
|
||||
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
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
|
||||
oQH7TsthVKvdZyjtZQg=
|
||||
=Uv8d
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
pub rsa4096 2019-01-24 [SC]
|
||||
1683FBD23F6DD36C0E52223507D78F777D2C0C27
|
||||
uid [ultimate] Ovilia (CODE SIGNING KEY) <oviliazhang@gmail.com>
|
||||
sig 3 07D78F777D2C0C27 2019-01-24 Ovilia (CODE SIGNING KEY) <oviliazhang@gmail.com>
|
||||
sub rsa4096 2019-01-24 [E]
|
||||
sig 07D78F777D2C0C27 2019-01-24 Ovilia (CODE SIGNING KEY) <oviliazhang@gmail.com>
|
||||
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
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
|
||||
B4WM8AJSCwl8WlZrRA==
|
||||
=wft0
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
pub rsa4096 2020-08-06 [SC]
|
||||
94BD178077672157652826758E44A82497382298
|
||||
uid [ 绝对 ] Shen Yi (CODE SIGNING KEY\) <shenyi@apache.org>
|
||||
sig 3 8E44A82497382298 2020-08-06 Shen Yi (CODE SIGNING KEY\) <shenyi@apache.org>
|
||||
sub rsa4096 2020-08-06 [E]
|
||||
sig 8E44A82497382298 2020-08-06 Shen Yi (CODE SIGNING KEY\) <shenyi@apache.org>
|
||||
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
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
|
||||
krvOtK7UUytDTcY=
|
||||
=+SBy
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
pub rsa4096 2022-03-02 [SC]
|
||||
8ACA4FC874B6B0836DFE70BB52514D7E7CFC32B6
|
||||
uid [ 绝对 ] Zhang Wenli (CODE SIGNING KEY) <ovilia@apache.org>
|
||||
sig 3 52514D7E7CFC32B6 2022-03-02 Zhang Wenli (CODE SIGNING KEY) <ovilia@apache.org>
|
||||
sub rsa4096 2022-03-02 [E]
|
||||
sig 52514D7E7CFC32B6 2022-03-02 Zhang Wenli (CODE SIGNING KEY) <ovilia@apache.org>
|
||||
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
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
|
||||
RWnk0btbWIvaznWpIWo=
|
||||
=QBYg
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
pub rsa4096 2022-03-28 [SC]
|
||||
EFA5629C5F1FF8D33E016202F16C82C561221579
|
||||
uid [ultimate] Zhongxiang Wang (CODE SIGNING KEY) <wangzx@apache.org>
|
||||
sig 3 F16C82C561221579 2022-03-28 Zhongxiang Wang (CODE SIGNING KEY) <wangzx@apache.org>
|
||||
sub rsa4096 2022-03-28 [E]
|
||||
sig F16C82C561221579 2022-03-28 Zhongxiang Wang (CODE SIGNING KEY) <wangzx@apache.org>
|
||||
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
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
|
||||
5B5E6LlMNPTCWmPzYtTm5qZK
|
||||
=bbcU
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
pub ed25519 2022-12-01 [SC] [expires: 2024-11-30]
|
||||
016736F5612A13D1FD04AA45CC593BC1F4F4EB7A
|
||||
uid [ultimate] susiwen <susiwen8@gmail.com>
|
||||
sig 3 CC593BC1F4F4EB7A 2022-12-01 susiwen <susiwen8@gmail.com>
|
||||
sub cv25519 2022-12-01 [E] [expires: 2024-11-30]
|
||||
sig CC593BC1F4F4EB7A 2022-12-01 susiwen <susiwen8@gmail.com>
|
||||
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
mDMEY4jDBhYJKwYBBAHaRw8BAQdAlpaQNA7ARfkPVj6EoYARkkGPdLgOmulCwScl
|
||||
xGk3+8m0HHN1c2l3ZW4gPHN1c2l3ZW44QGdtYWlsLmNvbT6ImQQTFgoAQRYhBAFn
|
||||
NvVhKhPR/QSqRcxZO8H09Ot6BQJjiMMGAhsDBQkDwmcABQsJCAcCAiICBhUKCQgL
|
||||
AgQWAgMBAh4HAheAAAoJEMxZO8H09Ot6gcoBANBsCrZOwZtWCCQB2A6cy0or7q4c
|
||||
GdyMJbP7zT5tdAAuAQDI7dy5/KE5tklZmEHJZevQLWezs6yKi+31QxcNFh6FA7g4
|
||||
BGOIwwYSCisGAQQBl1UBBQEBB0A4z0jb/PpPRt/zILSBzl8XidMvvQAksexms4P4
|
||||
D74EcQMBCAeIfgQYFgoAJhYhBAFnNvVhKhPR/QSqRcxZO8H09Ot6BQJjiMMGAhsM
|
||||
BQkDwmcAAAoJEMxZO8H09Ot6hEABALEBaZSNzmx17PbubyiyvtaEISuzsv23RYwh
|
||||
4NRHP4BkAP475WSjwMns2hSairvPXULqAcqQnjytov7CU1hbMLvgDpgzBGOMr5EW
|
||||
CSsGAQQB2kcPAQEHQF85ZZTr9NstXxkToCrkVYwNuahidgRyv6S3zo2xTc6ZtC9z
|
||||
dXNpd2VuIChDT0RFIFNJR05JTkcgS0VZKSA8c3VzaXdlbjhAZ21haWwuY29tPoiT
|
||||
BBMWCgA7FiEEhBIjSy5LUgkGNSGQJZ0/SMJTSzwFAmOMr5ECGwMFCwkIBwICIgIG
|
||||
FQoJCAsCBBYCAwECHgcCF4AACgkQJZ0/SMJTSzyNaAD+P35MI4r5nUDDg97QKYNY
|
||||
m99MtUxTmcK/KGsrxYEZEDEA/jECGFvy/5WAhIRUTl4ExVsY3eBL/K2DaoTseW4a
|
||||
eVEPuDgEY4yvkRIKKwYBBAGXVQEFAQEHQKNPmeMoqbHBVs5xn0c+Tz/bPW0rDDbw
|
||||
Gt1pqdBMdmUvAwEIB4h4BBgWCgAgFiEEhBIjSy5LUgkGNSGQJZ0/SMJTSzwFAmOM
|
||||
r5ECGwwACgkQJZ0/SMJTSzxTzQD+MTFHjt7z78fdTqbbRA6isxPV84cAFQsX4cRx
|
||||
PRobcbkBAIwAkq+ddEycxZTdzaELpE08h/BLcScqbOl/ME1PTZ0H
|
||||
=3Tm4
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
pub ed25519 2023-03-15 [SC] [有效至:2025-03-14]
|
||||
9C8B166777DB15AD1CC0FFBF715559B9217D4E5A
|
||||
uid [ 绝对 ] zakwu <123537200@qq.com>
|
||||
sig 3 715559B9217D4E5A 2023-03-15 zakwu <123537200@qq.com>
|
||||
sub cv25519 2023-03-15 [E] [有效至:2025-03-14]
|
||||
sig 715559B9217D4E5A 2023-03-15 zakwu <123537200@qq.com>
|
||||
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
mDMEZBE+JRYJKwYBBAHaRw8BAQdA4US4FlrxvH2Ckj5NzIkeL5nd4NyDBrlpyERo
|
||||
KvlXn/C0GHpha3d1IDwxMjM1MzcyMDBAcXEuY29tPoiZBBMWCgBBFiEEnIsWZ3fb
|
||||
Fa0cwP+/cVVZuSF9TloFAmQRPiUCGwMFCQPCZwAFCwkIBwICIgIGFQoJCAsCBBYC
|
||||
AwECHgcCF4AACgkQcVVZuSF9TloeGAD/RjarHn34jh1NtJGi6Z8wv/XWESxyNH6g
|
||||
orBPlQ+yluEBAIinhY8j/XczJQUcj9cqpMB4m8R+/jEadbaBe9pQ3uAHuDgEZBE+
|
||||
JRIKKwYBBAGXVQEFAQEHQPa8rnpAhbsWw0VsCbYo1J+VeZXT/piqPpdducN3Wyh2
|
||||
AwEIB4h+BBgWCgAmFiEEnIsWZ3fbFa0cwP+/cVVZuSF9TloFAmQRPiUCGwwFCQPC
|
||||
ZwAACgkQcVVZuSF9Tlrc4QD/ZDd7OjcT9ShdARjcGoQ0jt6rEqL6n10V6caG+77a
|
||||
89wA/R+29UlbOXNAxcQHxph8WXUZhACDhKyNETgRsgHysZQJ
|
||||
=/6bg
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
pub rsa4096 2024-01-31 [SC]
|
||||
88AF48720040B150083A7D10932517D290673A7B
|
||||
uid [ 绝对 ] Zhang Wenli <ovilia@apache.org>
|
||||
sig 3 932517D290673A7B 2024-01-31 [自签名]
|
||||
sub rsa4096 2024-01-31 [E]
|
||||
sig 932517D290673A7B 2024-01-31 [自签名]
|
||||
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
|
||||
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
|
||||
=YTwy
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
222
echarts-master/LICENSE
Normal file
222
echarts-master/LICENSE
Normal file
@ -0,0 +1,222 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
========================================================================
|
||||
Apache ECharts Subcomponents:
|
||||
|
||||
The Apache ECharts project contains subcomponents with separate copyright
|
||||
notices and license terms. Your use of the source code for these
|
||||
subcomponents is also subject to the terms and conditions of the following
|
||||
licenses.
|
||||
|
||||
BSD 3-Clause (d3.js):
|
||||
The following files embed [d3.js](https://github.com/d3/d3) BSD 3-Clause:
|
||||
`/src/chart/treemap/treemapLayout.ts`,
|
||||
`/src/chart/tree/layoutHelper.ts`,
|
||||
`/src/chart/graph/forceHelper.ts`,
|
||||
`/src/util/number.ts`
|
||||
See `/licenses/LICENSE-d3` for details of the license.
|
5
echarts-master/NOTICE
Normal file
5
echarts-master/NOTICE
Normal file
@ -0,0 +1,5 @@
|
||||
Apache ECharts
|
||||
Copyright 2017-2025 The Apache Software Foundation
|
||||
|
||||
This product includes software developed at
|
||||
The Apache Software Foundation (https://www.apache.org/).
|
98
echarts-master/README.md
Normal file
98
echarts-master/README.md
Normal file
@ -0,0 +1,98 @@
|
||||
# Apache ECharts
|
||||
|
||||
<a href="https://echarts.apache.org/">
|
||||
<img style="vertical-align: top;" src="./asset/logo.png?raw=true" alt="logo" height="50px">
|
||||
</a>
|
||||
|
||||
Apache ECharts is a free, powerful charting and visualization library offering easy ways to add intuitive, interactive, and highly customizable charts to your commercial products. It is written in pure JavaScript and based on <a href="https://github.com/ecomfe/zrender">zrender</a>, which is a whole new lightweight canvas library.
|
||||
|
||||
**[中文官网](https://echarts.apache.org/zh/index.html)** | **[ENGLISH HOMEPAGE](https://echarts.apache.org/en/index.html)**
|
||||
|
||||
[](https://github.com/apache/echarts/blob/master/LICENSE) [](https://www.npmjs.com/package/echarts) [](https://www.npmjs.com/package/echarts) [](https://github.com/apache/echarts/graphs/contributors)
|
||||
|
||||
[](https://github.com/apache/echarts/actions/workflows/ci.yml)
|
||||
|
||||
## Get Apache ECharts
|
||||
|
||||
You may choose one of the following methods:
|
||||
|
||||
+ Download from the [official website](https://echarts.apache.org/download.html)
|
||||
+ `npm install echarts --save`
|
||||
+ CDN: [jsDelivr CDN](https://www.jsdelivr.com/package/npm/echarts?path=dist)
|
||||
|
||||
## Docs
|
||||
|
||||
+ [Get Started](https://echarts.apache.org/handbook)
|
||||
+ [API](https://echarts.apache.org/api.html)
|
||||
+ [Option Manual](https://echarts.apache.org/option.html)
|
||||
+ [Examples](https://echarts.apache.org/examples)
|
||||
|
||||
## Get Help
|
||||
|
||||
+ [GitHub Issues](https://github.com/apache/echarts/issues) for bug report and feature requests
|
||||
+ Email [dev@echarts.apache.org](mailto:dev@echarts.apache.org) for general questions
|
||||
+ Subscribe to the [mailing list](https://echarts.apache.org/maillist.html) to get updated with the project
|
||||
|
||||
## Build
|
||||
|
||||
Build echarts source code:
|
||||
|
||||
Execute the instructions in the root directory of the echarts:
|
||||
([Node.js](https://nodejs.org) is required)
|
||||
|
||||
```shell
|
||||
# Install the dependencies from NPM:
|
||||
npm install
|
||||
|
||||
# Rebuild source code immediately in watch mode when changing the source code.
|
||||
# It opens the `./test` directory, and you may open `-cases.html` to get the list
|
||||
# of all test cases.
|
||||
# If you wish to create a test case, run `npm run mktest:help` to learn more.
|
||||
npm run dev
|
||||
|
||||
# Check the correctness of TypeScript code.
|
||||
npm run checktype
|
||||
|
||||
# If intending to build and get all types of the "production" files:
|
||||
npm run release
|
||||
```
|
||||
|
||||
Then the "production" files are generated in the `dist` directory.
|
||||
|
||||
## Contribution
|
||||
|
||||
Please refer to the [contributing](https://github.com/apache/echarts/blob/master/CONTRIBUTING.md) document if you wish to debug locally or make pull requests.
|
||||
|
||||
## Resources
|
||||
|
||||
### Awesome ECharts
|
||||
|
||||
[https://github.com/ecomfe/awesome-echarts](https://github.com/ecomfe/awesome-echarts)
|
||||
|
||||
### Extensions
|
||||
|
||||
+ [ECharts GL](https://github.com/ecomfe/echarts-gl) An extension pack of ECharts, which provides 3D plots, globe visualization, and WebGL acceleration.
|
||||
|
||||
+ [Liquidfill 水球图](https://github.com/ecomfe/echarts-liquidfill)
|
||||
|
||||
+ [Wordcloud 字符云](https://github.com/ecomfe/echarts-wordcloud)
|
||||
|
||||
+ [Extension for Baidu Map 百度地图扩展](https://github.com/apache/echarts/tree/master/extension-src/bmap) An extension provides a wrapper of Baidu Map Service SDK.
|
||||
|
||||
+ [vue-echarts](https://github.com/ecomfe/vue-echarts) ECharts component for Vue.js
|
||||
|
||||
+ [echarts-stat](https://github.com/ecomfe/echarts-stat) Statistics tool for ECharts
|
||||
|
||||
## License
|
||||
|
||||
ECharts is available under the Apache License V2.
|
||||
|
||||
## Code of Conduct
|
||||
|
||||
Please refer to [Apache Code of Conduct](https://www.apache.org/foundation/policies/conduct.html).
|
||||
|
||||
## Paper
|
||||
|
||||
Deqing Li, Honghui Mei, Yi Shen, Shuang Su, Wenli Zhang, Junting Wang, Ming Zu, Wei Chen.
|
||||
[ECharts: A Declarative Framework for Rapid Construction of Web-based Visualization](https://www.sciencedirect.com/science/article/pii/S2468502X18300068).
|
||||
Visual Informatics, 2018.
|
BIN
echarts-master/asset/contributing-inspect.png
Normal file
BIN
echarts-master/asset/contributing-inspect.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 236 KiB |
BIN
echarts-master/asset/logo.png
Normal file
BIN
echarts-master/asset/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.2 KiB |
183
echarts-master/build/addHeader.js
Normal file
183
echarts-master/build/addHeader.js
Normal file
@ -0,0 +1,183 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
const fs = require('fs');
|
||||
const preamble = require('./preamble');
|
||||
const pathTool = require('path');
|
||||
const chalk = require('chalk');
|
||||
|
||||
// In the `.headerignore`, each line is a pattern in RegExp.
|
||||
// all relative path (based on the echarts base directory) is tested.
|
||||
// The pattern should match the relative path completely.
|
||||
const excludesPath = pathTool.join(__dirname, '../.headerignore');
|
||||
const ecBasePath = pathTool.join(__dirname, '../');
|
||||
|
||||
const isVerbose = process.argv[2] === '--verbose';
|
||||
|
||||
// const lists = [
|
||||
// '../src/**/*.js',
|
||||
// '../build/*.js',
|
||||
// '../benchmark/src/*.js',
|
||||
// '../benchmark/src/gulpfile.js',
|
||||
// '../extension-src/**/*.js',
|
||||
// '../extension/**/*.js',
|
||||
// '../map/js/**/*.js',
|
||||
// '../test/build/**/*.js',
|
||||
// '../test/node/**/*.js',
|
||||
// '../test/ut/core/*.js',
|
||||
// '../test/ut/spe/*.js',
|
||||
// '../test/ut/ut.js',
|
||||
// '../test/*.js',
|
||||
// '../theme/*.js',
|
||||
// '../theme/tool/**/*.js',
|
||||
// '../echarts.all.js',
|
||||
// '../echarts.blank.js',
|
||||
// '../echarts.common.js',
|
||||
// '../echarts.simple.js',
|
||||
// '../index.js',
|
||||
// '../index.common.js',
|
||||
// '../index.simple.js'
|
||||
// ];
|
||||
|
||||
function run() {
|
||||
const updatedFiles = [];
|
||||
const passFiles = [];
|
||||
const pendingFiles = [];
|
||||
|
||||
eachFile(function (absolutePath, fileExt) {
|
||||
const fileStr = fs.readFileSync(absolutePath, 'utf-8');
|
||||
|
||||
const existLicense = preamble.extractLicense(fileStr, fileExt);
|
||||
|
||||
if (existLicense) {
|
||||
passFiles.push(absolutePath);
|
||||
return;
|
||||
}
|
||||
|
||||
// Conside binary files, only add for files with known ext.
|
||||
if (!preamble.hasPreamble(fileExt)) {
|
||||
pendingFiles.push(absolutePath);
|
||||
return;
|
||||
}
|
||||
|
||||
fs.writeFileSync(absolutePath, preamble.addPreamble(fileStr, fileExt), 'utf-8');
|
||||
updatedFiles.push(absolutePath);
|
||||
});
|
||||
|
||||
console.log('\n');
|
||||
console.log('----------------------------');
|
||||
console.log(' Files that exists license: ');
|
||||
console.log('----------------------------');
|
||||
if (passFiles.length) {
|
||||
if (isVerbose) {
|
||||
passFiles.forEach(function (path) {
|
||||
console.log(chalk.green(path));
|
||||
});
|
||||
}
|
||||
else {
|
||||
console.log(chalk.green(passFiles.length + ' files. (use argument "--verbose" see details)'));
|
||||
}
|
||||
}
|
||||
else {
|
||||
console.log('Nothing.');
|
||||
}
|
||||
|
||||
console.log('\n');
|
||||
console.log('--------------------');
|
||||
console.log(' License added for: ');
|
||||
console.log('--------------------');
|
||||
if (updatedFiles.length) {
|
||||
updatedFiles.forEach(function (path) {
|
||||
console.log(chalk.green(path));
|
||||
});
|
||||
}
|
||||
else {
|
||||
console.log('Nothing.');
|
||||
}
|
||||
|
||||
console.log('\n');
|
||||
console.log('----------------');
|
||||
console.log(' Pending files: ');
|
||||
console.log('----------------');
|
||||
if (pendingFiles.length) {
|
||||
pendingFiles.forEach(function (path) {
|
||||
console.log(chalk.red(path));
|
||||
});
|
||||
}
|
||||
else {
|
||||
console.log('Nothing.');
|
||||
}
|
||||
|
||||
console.log('\nDone.');
|
||||
}
|
||||
|
||||
function eachFile(visit) {
|
||||
|
||||
const excludePatterns = [];
|
||||
const extReg = /\.([a-zA-Z0-9_-]+)$/;
|
||||
|
||||
prepareExcludePatterns();
|
||||
travel('./');
|
||||
|
||||
function travel(relativePath) {
|
||||
if (isExclude(relativePath)) {
|
||||
return;
|
||||
}
|
||||
|
||||
const absolutePath = pathTool.join(ecBasePath, relativePath);
|
||||
const stat = fs.statSync(absolutePath);
|
||||
|
||||
if (stat.isFile()) {
|
||||
visit(absolutePath, getExt(absolutePath));
|
||||
}
|
||||
else if (stat.isDirectory()) {
|
||||
fs.readdirSync(relativePath).forEach(function (file) {
|
||||
travel(pathTool.join(relativePath, file));
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function prepareExcludePatterns() {
|
||||
const content = fs.readFileSync(excludesPath, {encoding: 'utf-8'});
|
||||
content.replace(/\r/g, '\n').split('\n').forEach(function (line) {
|
||||
line = line.trim();
|
||||
if (line && line.charAt(0) !== '#') {
|
||||
excludePatterns.push(new RegExp(line));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function isExclude(relativePath) {
|
||||
for (let i = 0; i < excludePatterns.length; i++) {
|
||||
if (excludePatterns[i].test(relativePath)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function getExt(path) {
|
||||
if (path) {
|
||||
const mathResult = path.match(extReg);
|
||||
return mathResult && mathResult[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
run();
|
114
echarts-master/build/build-i18n.js
Normal file
114
echarts-master/build/build-i18n.js
Normal file
@ -0,0 +1,114 @@
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
const fs = require('fs');
|
||||
const preamble = require('./preamble');
|
||||
const ts = require('typescript');
|
||||
const path = require('path');
|
||||
const fsExtra = require('fs-extra');
|
||||
|
||||
const umdWrapperHead = `
|
||||
${preamble.js}
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
`;
|
||||
|
||||
const umdWrapperHeadWithEcharts = `
|
||||
${preamble.js}
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
`;
|
||||
|
||||
const umdWrapperTail = `
|
||||
});`;
|
||||
|
||||
async function buildI18nWrap() {
|
||||
const targetDir = path.join(__dirname, '../i18n');
|
||||
const sourceDir = path.join(__dirname, '../src/i18n');
|
||||
const files = fs.readdirSync(sourceDir);
|
||||
files.forEach(t => {
|
||||
if(!t.startsWith('lang')) {
|
||||
return;
|
||||
}
|
||||
const fileName = t.replace(/\.ts$/, '');
|
||||
const type = fileName.replace(/^lang/, '');
|
||||
const echartsRegister = `
|
||||
echarts.registerLocale('${type}', localeObj);
|
||||
`;
|
||||
const pureExports = `
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
`;
|
||||
const code = fs.readFileSync(path.join(sourceDir, t), 'utf-8');
|
||||
// const outputText = ts.transpileModule(code, {
|
||||
// module: ts.ModuleKind.CommonJS,
|
||||
// }).outputText;
|
||||
// Simple regexp replace is enough
|
||||
const outputCode = code.replace(/export\s+?default/, 'var localeObj =')
|
||||
.replace(/\/\*([\w\W]*?)\*\//, '');
|
||||
|
||||
fsExtra.ensureDirSync(targetDir);
|
||||
|
||||
fs.writeFileSync(path.join(targetDir, fileName + '.js'), umdWrapperHeadWithEcharts + outputCode + echartsRegister + umdWrapperTail, 'utf-8');
|
||||
fs.writeFileSync(path.join(targetDir, fileName + '-obj.js'), umdWrapperHead + outputCode + pureExports + umdWrapperTail, 'utf-8');
|
||||
})
|
||||
console.log('i18n build completed');
|
||||
}
|
||||
|
||||
buildI18nWrap();
|
||||
|
||||
module.exports = {
|
||||
buildI18n: buildI18nWrap
|
||||
};
|
235
echarts-master/build/build.js
Normal file
235
echarts-master/build/build.js
Normal file
@ -0,0 +1,235 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
const fs = require('fs');
|
||||
const config = require('./config.js');
|
||||
const commander = require('commander');
|
||||
const chalk = require('chalk');
|
||||
const rollup = require('rollup');
|
||||
const prePublish = require('./pre-publish');
|
||||
const transformDEV = require('./transform-dev');
|
||||
|
||||
async function run() {
|
||||
|
||||
/**
|
||||
* Tips for `commander`:
|
||||
* (1) If arg xxx not specified, `commander.xxx` is undefined.
|
||||
* Otherwise:
|
||||
* If '-x, --xxx', `commander.xxx` can only be true/false, even if '--xxx yyy' input.
|
||||
* If '-x, --xxx <some>', the 'some' string is required, or otherwise error will be thrown.
|
||||
* If '-x, --xxx [some]', the 'some' string is optional, that is, `commander.xxx` can be boolean or string.
|
||||
* (2) `node ./build/build.js --help` will print helper info and exit.
|
||||
*/
|
||||
|
||||
let descIndent = ' ';
|
||||
let egIndent = ' ';
|
||||
|
||||
commander
|
||||
.usage('[options]')
|
||||
.description([
|
||||
'Build echarts and generate result files in directory `echarts/dist`.',
|
||||
'',
|
||||
' For example:',
|
||||
'',
|
||||
egIndent + 'node build/build.js --prepublish'
|
||||
+ '\n' + descIndent + '# Only prepublish.',
|
||||
egIndent + 'node build/build.js --type ""'
|
||||
+ '\n' + descIndent + '# Only generate `dist/echarts.js`.',
|
||||
egIndent + 'node build/build.js --type common --min'
|
||||
+ '\n' + descIndent + '# Only generate `dist/echarts.common.min.js`.',
|
||||
egIndent + 'node build/build.js --type simple --min'
|
||||
+ '\n' + descIndent + '# Only generate `dist/echarts-en.simple.min.js`.',
|
||||
].join('\n'))
|
||||
.option(
|
||||
'--prepublish',
|
||||
'Build all for release'
|
||||
)
|
||||
.option(
|
||||
'--min',
|
||||
'Whether to compress the output file, and remove error-log-print code.'
|
||||
)
|
||||
.option(
|
||||
'--type <type name>', [
|
||||
'Can be "simple" or "common" or "all" (default). Or can be simple,common,all to build multiple. For example,',
|
||||
descIndent + '`--type ""` or `--type "common"`.'
|
||||
].join('\n'))
|
||||
.option(
|
||||
'--format <format>',
|
||||
'The format of output bundle. Can be "umd", "amd", "iife", "cjs", "esm".'
|
||||
)
|
||||
.parse(process.argv);
|
||||
|
||||
let isPrePublish = !!commander.prepublish;
|
||||
let buildType = commander.type || 'all';
|
||||
|
||||
let opt = {
|
||||
min: commander.min,
|
||||
format: commander.format || 'umd'
|
||||
};
|
||||
|
||||
validateIO(opt.input, opt.output);
|
||||
|
||||
if (isPrePublish) {
|
||||
await prePublish();
|
||||
}
|
||||
else if (buildType === 'extension') {
|
||||
const cfgs = [
|
||||
config.createBMap(opt),
|
||||
config.createDataTool(opt)
|
||||
];
|
||||
await build(cfgs);
|
||||
}
|
||||
else if (buildType === 'ssr') {
|
||||
const cfgs = [
|
||||
config.createSSRClient(opt)
|
||||
];
|
||||
await build(cfgs);
|
||||
}
|
||||
else if (buildType === 'myTransform') {
|
||||
const cfgs = [
|
||||
config.createMyTransform(opt)
|
||||
];
|
||||
await build(cfgs);
|
||||
}
|
||||
else {
|
||||
const types = buildType.split(',').map(a => a.trim());
|
||||
|
||||
|
||||
// Since 5.5.0, echarts/package.json added `{"type": "module"}`, and added
|
||||
// echarts/dist/package.json with `{"type": "commonjs"}`, both of which makes
|
||||
// echarts/dist/echarts.esm.js can not be recognized as esm any more (at least
|
||||
// in webpack5 and nodejs) any more. So we provides echarts/dist/echarts.esm.mjs.
|
||||
// But for backward compat, we still provide provides echarts/dist/echarts.esm.js.
|
||||
const isBuildingDistESM = (opt.format || '').toLowerCase() === 'esm';
|
||||
if (isBuildingDistESM) {
|
||||
await makeConfigAndBuild(opt, '.js');
|
||||
await makeConfigAndBuild(opt, '.mjs');
|
||||
}
|
||||
else {
|
||||
await makeConfigAndBuild(opt);
|
||||
}
|
||||
|
||||
async function makeConfigAndBuild(opt, fileExtension) {
|
||||
const cfgs = types.map(type =>
|
||||
config.createECharts({
|
||||
...opt,
|
||||
type,
|
||||
fileExtension
|
||||
})
|
||||
);
|
||||
await build(cfgs);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function checkBundleCode(cfg) {
|
||||
// Make sure process.env.NODE_ENV is eliminated.
|
||||
for (let output of cfg.output) {
|
||||
let code = fs.readFileSync(output.file, {encoding: 'utf-8'});
|
||||
if (!code) {
|
||||
throw new Error(`${output.file} is empty`);
|
||||
}
|
||||
transformDEV.recheckDEV(code);
|
||||
console.log(chalk.green.dim('Check code: correct.'));
|
||||
}
|
||||
}
|
||||
|
||||
function validateIO(input, output) {
|
||||
if ((input != null && output == null)
|
||||
|| (input == null && output != null)
|
||||
) {
|
||||
throw new Error('`input` and `output` must be both set.');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Array.<Object>} configs A list of rollup configs:
|
||||
* See: <https://rollupjs.org/#big-list-of-options>
|
||||
* For example:
|
||||
* [
|
||||
* {
|
||||
* ...inputOptions,
|
||||
* output: [outputOptions],
|
||||
* },
|
||||
* ...
|
||||
* ]
|
||||
*/
|
||||
async function build(configs) {
|
||||
console.log(chalk.yellow(`
|
||||
NOTICE: If you are using 'npm run build'. Run 'npm run prepare' before build !!!
|
||||
`));
|
||||
|
||||
console.log(chalk.yellow(`
|
||||
NOTICE: If you are using syslink on zrender. Run 'npm run prepare' in zrender first !!
|
||||
`));
|
||||
|
||||
for (let singleConfig of configs) {
|
||||
console.log(
|
||||
chalk.cyan.dim('\Bundling '),
|
||||
chalk.cyan(singleConfig.input)
|
||||
);
|
||||
|
||||
console.time('rollup build');
|
||||
const bundle = await rollup.rollup(singleConfig);
|
||||
|
||||
for (let output of singleConfig.output) {
|
||||
console.log(
|
||||
chalk.green.dim('Created '),
|
||||
chalk.green(output.file),
|
||||
chalk.green.dim(' successfully.')
|
||||
);
|
||||
|
||||
await bundle.write(output);
|
||||
|
||||
};
|
||||
console.timeEnd('rollup build');
|
||||
|
||||
checkBundleCode(singleConfig);
|
||||
}
|
||||
}
|
||||
|
||||
async function main() {
|
||||
try {
|
||||
await run();
|
||||
}
|
||||
catch (err) {
|
||||
console.log(chalk.red('BUILD ERROR!'));
|
||||
// rollup parse error.
|
||||
if (err) {
|
||||
if (err.loc) {
|
||||
console.warn(chalk.red(`${err.loc.file} (${err.loc.line}:${err.loc.column})`));
|
||||
console.warn(chalk.red(err.message));
|
||||
}
|
||||
if (err.frame) {
|
||||
console.warn(chalk.red(err.frame));
|
||||
}
|
||||
console.log(chalk.red(err ? err.stack : err));
|
||||
|
||||
err.id != null && console.warn(chalk.red(`id: ${err.id}`));
|
||||
err.hook != null && console.warn(chalk.red(`hook: ${err.hook}`));
|
||||
err.code != null && console.warn(chalk.red(`code: ${err.code}`));
|
||||
err.plugin != null && console.warn(chalk.red(`plugin: ${err.plugin}`));
|
||||
}
|
||||
// console.log(err);
|
||||
}
|
||||
}
|
||||
|
||||
main();
|
193
echarts-master/build/config.js
Normal file
193
echarts-master/build/config.js
Normal file
@ -0,0 +1,193 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
const nodeResolvePlugin = require('@rollup/plugin-node-resolve').default;
|
||||
const nodePath = require('path');
|
||||
const ecDir = nodePath.resolve(__dirname, '..');
|
||||
const {terser} = require('rollup-plugin-terser');
|
||||
const replace = require('@rollup/plugin-replace');
|
||||
const MagicString = require('magic-string');
|
||||
const preamble = require('./preamble');
|
||||
|
||||
function createAddLicensePlugin(sourcemap) {
|
||||
return {
|
||||
renderChunk(code, chunk) {
|
||||
const s = new MagicString(code);
|
||||
s.prepend(preamble.js);
|
||||
return {
|
||||
code: s.toString(),
|
||||
map: sourcemap ? s.generateMap({ hires: true }).toString() : null
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function createOutputs(basename, { min, fileExtension }, commonOutputOpts) {
|
||||
commonOutputOpts = {
|
||||
format: 'umd',
|
||||
...commonOutputOpts
|
||||
}
|
||||
function createReplacePlugin(replacement) {
|
||||
const plugin = replace({
|
||||
'process.env.NODE_ENV': JSON.stringify(replacement)
|
||||
});
|
||||
// Remove transform hook. It will have warning when using in output
|
||||
delete plugin.transform;
|
||||
return plugin;
|
||||
}
|
||||
const output = [{
|
||||
...commonOutputOpts,
|
||||
// Disable sourcemap in
|
||||
sourcemap: true,
|
||||
plugins: [
|
||||
createReplacePlugin('development'),
|
||||
createAddLicensePlugin(true)
|
||||
],
|
||||
file: basename + (fileExtension || '.js')
|
||||
}];
|
||||
|
||||
if (min) {
|
||||
output.push({
|
||||
...commonOutputOpts,
|
||||
// Disable sourcemap in min file.
|
||||
sourcemap: false,
|
||||
// TODO preamble
|
||||
plugins: [
|
||||
createReplacePlugin('production'),
|
||||
terser(),
|
||||
createAddLicensePlugin(false)
|
||||
],
|
||||
file: basename + '.min' + (fileExtension || '.js')
|
||||
})
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Object} [opt]
|
||||
* @param {string} [opt.type=''] 'all' or 'simple' or 'common', default is 'all'
|
||||
* @param {boolean} [opt.sourcemap] If set, `opt.input` is required too, and `opt.type` is ignored.
|
||||
* @param {string} [opt.format='umd'] If set, `opt.input` is required too, and `opt.type` is ignored.
|
||||
* @param {string} [opt.min=false] If build minified output
|
||||
* @param {boolean} [opt.addBundleVersion=false] Only for debug in watch, prompt that the two build is different.
|
||||
* @param {string} [opt.fileExtension=undefined] output file extension, default is '.js'. Should start with '.'.
|
||||
*/
|
||||
exports.createECharts = function (opt = {}) {
|
||||
const srcType = opt.type !== 'all' ? '.' + opt.type : '';
|
||||
const postfixType = srcType;
|
||||
const format = opt.format || 'umd';
|
||||
const postfixFormat = (format !== 'umd') ? '.' + format.toLowerCase() : '';
|
||||
|
||||
const input = nodePath.resolve(ecDir, `index${srcType}.js`);
|
||||
|
||||
return {
|
||||
plugins: [nodeResolvePlugin()],
|
||||
treeshake: {
|
||||
moduleSideEffects: false
|
||||
},
|
||||
|
||||
input: input,
|
||||
|
||||
output: createOutputs(
|
||||
nodePath.resolve(ecDir, `dist/echarts${postfixFormat}${postfixType}`),
|
||||
opt,
|
||||
{
|
||||
name: 'echarts',
|
||||
// Ignore default exports, which is only for compatible code like:
|
||||
// import echarts from 'echarts/lib/echarts';
|
||||
exports: 'named',
|
||||
format: format
|
||||
}
|
||||
)
|
||||
};
|
||||
};
|
||||
|
||||
exports.createBMap = function (opt) {
|
||||
const input = nodePath.resolve(ecDir, `extension/bmap/bmap.js`);
|
||||
|
||||
return {
|
||||
plugins: [nodeResolvePlugin()],
|
||||
input: input,
|
||||
external: ['echarts'],
|
||||
output: createOutputs(
|
||||
nodePath.resolve(ecDir, `dist/extension/bmap`),
|
||||
opt,
|
||||
{
|
||||
name: 'bmap',
|
||||
globals: {
|
||||
// For UMD `global.echarts`
|
||||
echarts: 'echarts'
|
||||
}
|
||||
}
|
||||
)
|
||||
};
|
||||
};
|
||||
|
||||
exports.createDataTool = function (opt) {
|
||||
let input = nodePath.resolve(ecDir, `extension/dataTool/index.js`);
|
||||
|
||||
return {
|
||||
plugins: [nodeResolvePlugin()],
|
||||
input: input,
|
||||
external: ['echarts'],
|
||||
output: createOutputs(
|
||||
nodePath.resolve(ecDir, `dist/extension/dataTool`),
|
||||
opt,
|
||||
{
|
||||
name: 'dataTool',
|
||||
globals: {
|
||||
// For UMD `global.echarts`
|
||||
echarts: 'echarts'
|
||||
}
|
||||
}
|
||||
)
|
||||
};
|
||||
};
|
||||
|
||||
exports.createMyTransform = function (opt) {
|
||||
let input = nodePath.resolve(ecDir, `test/lib/myTransform/src/index.ts`);
|
||||
|
||||
return {
|
||||
plugins: [nodeResolvePlugin()],
|
||||
input: input,
|
||||
output: createOutputs(
|
||||
nodePath.resolve(ecDir, `test/lib/myTransform/dist/myTransform`),
|
||||
opt,
|
||||
{
|
||||
name: 'myTransform'
|
||||
}
|
||||
)
|
||||
};
|
||||
};
|
||||
|
||||
exports.createSSRClient = function (opt) {
|
||||
const input = nodePath.resolve(ecDir, `ssr/client/lib/index.js`);
|
||||
|
||||
return {
|
||||
plugins: [nodeResolvePlugin()],
|
||||
input: input,
|
||||
output: createOutputs(
|
||||
nodePath.resolve(ecDir, `ssr/client/dist/index`),
|
||||
opt,
|
||||
{
|
||||
name: 'echarts-ssr-client'
|
||||
}
|
||||
)
|
||||
};
|
||||
};
|
67
echarts-master/build/dev-fast.js
Normal file
67
echarts-master/build/dev-fast.js
Normal file
@ -0,0 +1,67 @@
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
const path = require('path');
|
||||
const {build} = require('esbuild');
|
||||
const commander = require('commander');
|
||||
const outFilePath = path.resolve(__dirname, '../dist/echarts.js');
|
||||
|
||||
const umdWrapperHead = `(function (root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory((root.echarts = {}));
|
||||
}
|
||||
}(typeof self !== 'undefined' ? self : this, function (exports, b) {
|
||||
`;
|
||||
|
||||
const umdWrapperTail = `
|
||||
}));`;
|
||||
|
||||
build({
|
||||
entryPoints: [path.resolve(__dirname, '../src/echarts.all.ts')],
|
||||
outfile: outFilePath,
|
||||
format: 'cjs',
|
||||
sourcemap: true,
|
||||
bundle: true,
|
||||
banner: umdWrapperHead,
|
||||
footer: umdWrapperTail,
|
||||
define: {
|
||||
'process.env.NODE_ENV': '"development"',
|
||||
'__DEV__': 'true'
|
||||
},
|
||||
watch: {
|
||||
async onRebuild(error) {
|
||||
if (error) {
|
||||
console.error('watch build failed:', error)
|
||||
}
|
||||
else {
|
||||
console.log('Bundled with esbuild')
|
||||
}
|
||||
},
|
||||
},
|
||||
}).then(async () => {
|
||||
console.log('Bundled with esbuild')
|
||||
}).catch(e => console.error(e.toString()))
|
30
echarts-master/build/nightly/post.js
Normal file
30
echarts-master/build/nightly/post.js
Normal file
@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
const fs = require('fs');
|
||||
|
||||
const root = __dirname + '/../../';
|
||||
const echartsPkg = JSON.parse(fs.readFileSync(root + 'package.json'), 'utf-8');
|
||||
const zrenderPkg = JSON.parse(fs.readFileSync(root + 'node_modules/zrender/package.json', 'utf-8'));
|
||||
|
||||
const echartsCorePath = root + 'src/core/echarts.ts';
|
||||
const echartsCoreFile = fs.readFileSync(echartsCorePath, 'utf-8')
|
||||
.replace(/export const version = '\S+'/, `export const version = '${echartsPkg.version}'`)
|
||||
.replace(/(export const dependencies = {\s+zrender: ')\S+('\s+})/, `$1${zrenderPkg.version}$2`);
|
||||
fs.writeFileSync(echartsCorePath, echartsCoreFile, 'utf-8');
|
72
echarts-master/build/nightly/prepare.js
Normal file
72
echarts-master/build/nightly/prepare.js
Normal file
@ -0,0 +1,72 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
const fs = require('fs');
|
||||
const packageJsonPath = __dirname + '/../../package.json';
|
||||
const nightlyPackageName = 'echarts-nightly';
|
||||
|
||||
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf-8'));
|
||||
|
||||
function updateVersion(version) {
|
||||
const isNext = process.argv.includes('--next');
|
||||
const parts = /(\d+)\.(\d+)\.(\d+)($|\-)/.exec(version);
|
||||
if (!parts) {
|
||||
throw new Error(`Invalid version number ${version}`);
|
||||
}
|
||||
// Add date to version.
|
||||
const major = +parts[1];
|
||||
let minor = +parts[2];
|
||||
let patch = +parts[3];
|
||||
const isStable = !parts[4];
|
||||
if (isStable) {
|
||||
// It's previous stable version. Dev version should be higher.
|
||||
if (isNext) {
|
||||
// Increase minor version for next branch.
|
||||
minor++;
|
||||
patch = 0;
|
||||
}
|
||||
else {
|
||||
// Increase main version for master branch.
|
||||
patch++;
|
||||
}
|
||||
}
|
||||
|
||||
const date = new Date().toISOString().replace(/:|T|\.|-/g, '').slice(0, 8);
|
||||
return `${major}.${minor}.${patch}-dev.${date}`;
|
||||
}
|
||||
|
||||
packageJson.name = nightlyPackageName;
|
||||
packageJson.version = updateVersion(packageJson.version);
|
||||
|
||||
fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2), 'utf-8');
|
||||
|
||||
const readmePath = __dirname + '/../../README.md';
|
||||
const readmeAttention = `<h3>
|
||||
<p><em>⚠️ ATTENTION PLEASE</em></p>
|
||||
<p><em>This is nightly build of Apache ECharts. Please DON't use it in your production environment.</em></p>
|
||||
</h3>`;
|
||||
const readmeContent = fs.readFileSync(readmePath, 'utf-8');
|
||||
if (!readmeContent.includes(readmeAttention)) {
|
||||
fs.writeFileSync(readmePath, `
|
||||
${readmeAttention}
|
||||
|
||||
${readmeContent}
|
||||
`, 'utf-8');
|
||||
}
|
3
echarts-master/build/package.json
Normal file
3
echarts-master/build/package.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"type": "commonjs"
|
||||
}
|
461
echarts-master/build/pre-publish.js
Normal file
461
echarts-master/build/pre-publish.js
Normal file
@ -0,0 +1,461 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* [Create CommonJS files]:
|
||||
* Compatible with previous folder structure: `echarts/lib` exists in `node_modules`
|
||||
* (1) Build all files to CommonJS to `echarts/lib`.
|
||||
* (2) Remove __DEV__.
|
||||
* (3) Mount `echarts/src/export.js` to `echarts/lib/echarts.js`.
|
||||
*
|
||||
* [Create ESModule files]:
|
||||
* Build all files to CommonJS to `echarts/esm`.
|
||||
*/
|
||||
|
||||
const nodePath = require('path');
|
||||
const assert = require('assert');
|
||||
const fs = require('fs');
|
||||
const fsExtra = require('fs-extra');
|
||||
const chalk = require('chalk');
|
||||
const ts = require('typescript');
|
||||
const globby = require('globby');
|
||||
const transformDEVUtil = require('./transform-dev');
|
||||
const preamble = require('./preamble');
|
||||
const dts = require('@lang/rollup-plugin-dts').default;
|
||||
const rollup = require('rollup');
|
||||
const { transformImport } = require('zrender/build/transformImport.js');
|
||||
|
||||
const ecDir = nodePath.resolve(__dirname, '..');
|
||||
const tmpDir = nodePath.resolve(ecDir, 'pre-publish-tmp');
|
||||
|
||||
const tsConfig = readTSConfig();
|
||||
|
||||
const autoGeneratedFileAlert = `
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
|
||||
`;
|
||||
|
||||
const mainSrcGlobby = {
|
||||
patterns: [
|
||||
'src/**/*.ts'
|
||||
],
|
||||
cwd: ecDir
|
||||
};
|
||||
const extensionSrcGlobby = {
|
||||
patterns: [
|
||||
'extension-src/**/*.ts'
|
||||
],
|
||||
cwd: ecDir
|
||||
};
|
||||
const extensionSrcDir = nodePath.resolve(ecDir, 'extension-src');
|
||||
const extensionESMDir = nodePath.resolve(ecDir, 'extension');
|
||||
const ssrClientGlobby = {
|
||||
patterns: [
|
||||
'ssr/client/src/**/*.ts'
|
||||
],
|
||||
cwd: ecDir
|
||||
};
|
||||
const ssrClientSrcDir = nodePath.resolve(ecDir, 'ssr/client/src');
|
||||
const ssrClientESMDir = nodePath.resolve(ecDir, 'ssr/client/lib');
|
||||
const ssrClientTypeDir = nodePath.resolve(ecDir, 'ssr/client/types');
|
||||
|
||||
const typesDir = nodePath.resolve(ecDir, 'types');
|
||||
const esmDir = 'lib';
|
||||
|
||||
|
||||
const compileWorkList = [
|
||||
{
|
||||
logLabel: 'main ts -> js-esm',
|
||||
compilerOptionsOverride: {
|
||||
module: 'ES2015',
|
||||
rootDir: ecDir,
|
||||
outDir: tmpDir,
|
||||
// Generate types when building esm
|
||||
declaration: true,
|
||||
declarationDir: typesDir
|
||||
},
|
||||
srcGlobby: mainSrcGlobby,
|
||||
transformOptions: {
|
||||
filesGlobby: {patterns: ['**/*.js'], cwd: tmpDir},
|
||||
preamble: preamble.js,
|
||||
transformDEV: true
|
||||
},
|
||||
before: async function () {
|
||||
fsExtra.removeSync(tmpDir);
|
||||
fsExtra.removeSync(nodePath.resolve(ecDir, 'types'));
|
||||
fsExtra.removeSync(nodePath.resolve(ecDir, esmDir));
|
||||
fsExtra.removeSync(nodePath.resolve(ecDir, 'index.js'));
|
||||
fsExtra.removeSync(nodePath.resolve(ecDir, 'index.blank.js'));
|
||||
fsExtra.removeSync(nodePath.resolve(ecDir, 'index.common.js'));
|
||||
fsExtra.removeSync(nodePath.resolve(ecDir, 'index.simple.js'));
|
||||
},
|
||||
after: async function () {
|
||||
fs.renameSync(nodePath.resolve(tmpDir, 'src/echarts.all.js'), nodePath.resolve(ecDir, 'index.js'));
|
||||
fs.renameSync(nodePath.resolve(tmpDir, 'src/echarts.blank.js'), nodePath.resolve(ecDir, 'index.blank.js'));
|
||||
fs.renameSync(nodePath.resolve(tmpDir, 'src/echarts.common.js'), nodePath.resolve(ecDir, 'index.common.js'));
|
||||
fs.renameSync(nodePath.resolve(tmpDir, 'src/echarts.simple.js'), nodePath.resolve(ecDir, 'index.simple.js'));
|
||||
fs.renameSync(nodePath.resolve(tmpDir, 'src'), nodePath.resolve(ecDir, esmDir));
|
||||
|
||||
transformRootFolderInEntry(nodePath.resolve(ecDir, 'index.js'), esmDir);
|
||||
transformRootFolderInEntry(nodePath.resolve(ecDir, 'index.blank.js'), esmDir);
|
||||
transformRootFolderInEntry(nodePath.resolve(ecDir, 'index.common.js'), esmDir);
|
||||
transformRootFolderInEntry(nodePath.resolve(ecDir, 'index.simple.js'), esmDir);
|
||||
|
||||
await transformLibFiles(nodePath.resolve(ecDir, esmDir), esmDir);
|
||||
await transformLibFiles(nodePath.resolve(ecDir, 'types'), esmDir);
|
||||
fsExtra.removeSync(tmpDir);
|
||||
}
|
||||
},
|
||||
{
|
||||
logLabel: 'extension ts -> js-esm',
|
||||
compilerOptionsOverride: {
|
||||
module: 'ES2015',
|
||||
declaration: false,
|
||||
rootDir: extensionSrcDir,
|
||||
outDir: extensionESMDir
|
||||
},
|
||||
srcGlobby: extensionSrcGlobby,
|
||||
transformOptions: {
|
||||
filesGlobby: {patterns: ['**/*.js'], cwd: extensionESMDir},
|
||||
preamble: preamble.js,
|
||||
transformDEV: true
|
||||
},
|
||||
before: async function () {
|
||||
fsExtra.removeSync(extensionESMDir);
|
||||
},
|
||||
after: async function () {
|
||||
await transformLibFiles(extensionESMDir, 'lib');
|
||||
}
|
||||
},
|
||||
{
|
||||
logLabel: 'ssr client ts -> js-esm',
|
||||
compilerOptionsOverride: {
|
||||
module: 'ES2015',
|
||||
declaration: true,
|
||||
rootDir: ssrClientSrcDir,
|
||||
outDir: ssrClientESMDir,
|
||||
declarationDir: ssrClientTypeDir
|
||||
},
|
||||
srcGlobby: ssrClientGlobby,
|
||||
transformOptions: {
|
||||
filesGlobby: {patterns: ['**/*.js'], cwd: ssrClientESMDir},
|
||||
transformDEV: true
|
||||
},
|
||||
before: async function () {
|
||||
fsExtra.removeSync(ssrClientESMDir);
|
||||
},
|
||||
after: async function () {
|
||||
await transformLibFiles(ssrClientESMDir, 'lib');
|
||||
}
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @public
|
||||
*/
|
||||
module.exports = async function () {
|
||||
|
||||
for (let {
|
||||
logLabel, compilerOptionsOverride, srcGlobby,
|
||||
transformOptions, before, after
|
||||
} of compileWorkList) {
|
||||
|
||||
process.stdout.write(chalk.green.dim(`[${logLabel}]: compiling ...`));
|
||||
|
||||
before && await before();
|
||||
|
||||
let srcPathList = await readFilePaths(srcGlobby);
|
||||
|
||||
await tsCompile(compilerOptionsOverride, srcPathList);
|
||||
|
||||
process.stdout.write(chalk.green.dim(` done \n`));
|
||||
|
||||
process.stdout.write(chalk.green.dim(`[${logLabel}]: transforming ...`));
|
||||
|
||||
await transformCode(transformOptions);
|
||||
|
||||
after && await after();
|
||||
|
||||
process.stdout.write(chalk.green.dim(` done \n`));
|
||||
}
|
||||
|
||||
process.stdout.write(chalk.green.dim(`Generating entries ...`));
|
||||
generateEntries();
|
||||
process.stdout.write(chalk.green.dim(`Bundling DTS ...`));
|
||||
await bundleDTS();
|
||||
|
||||
console.log(chalk.green.dim('All done.'));
|
||||
};
|
||||
|
||||
async function runTsCompile(localTs, compilerOptions, srcPathList) {
|
||||
// Must do it, because the value in tsconfig.json might be different from the inner representation.
|
||||
// For example: moduleResolution: "NODE" => moduleResolution: 2
|
||||
const {options, errors} = localTs.convertCompilerOptionsFromJson(compilerOptions, ecDir);
|
||||
|
||||
if (errors.length) {
|
||||
let errMsg = 'tsconfig parse failed: '
|
||||
+ errors.map(error => error.messageText).join('. ')
|
||||
+ '\n compilerOptions: \n' + JSON.stringify(compilerOptions, null, 4);
|
||||
assert(false, errMsg);
|
||||
}
|
||||
|
||||
// See: https://github.com/microsoft/TypeScript/wiki/Using-the-Compiler-API
|
||||
|
||||
let program = localTs.createProgram(srcPathList, options);
|
||||
let emitResult = program.emit();
|
||||
|
||||
let allDiagnostics = localTs
|
||||
.getPreEmitDiagnostics(program)
|
||||
.concat(emitResult.diagnostics);
|
||||
|
||||
allDiagnostics.forEach(diagnostic => {
|
||||
if (diagnostic.file) {
|
||||
let {line, character} = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start);
|
||||
let message = localTs.flattenDiagnosticMessageText(diagnostic.messageText, '\n');
|
||||
console.log(chalk.red(`${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message}`));
|
||||
}
|
||||
else {
|
||||
console.log(chalk.red(localTs.flattenDiagnosticMessageText(diagnostic.messageText, '\n')));
|
||||
}
|
||||
});
|
||||
if (allDiagnostics.length > 0) {
|
||||
throw new Error('TypeScript Compile Failed')
|
||||
}
|
||||
}
|
||||
module.exports.runTsCompile = runTsCompile;
|
||||
|
||||
async function tsCompile(compilerOptionsOverride, srcPathList) {
|
||||
assert(
|
||||
compilerOptionsOverride
|
||||
&& compilerOptionsOverride.module
|
||||
&& compilerOptionsOverride.rootDir
|
||||
&& compilerOptionsOverride.outDir
|
||||
);
|
||||
|
||||
let compilerOptions = {
|
||||
...tsConfig.compilerOptions,
|
||||
...compilerOptionsOverride,
|
||||
sourceMap: false
|
||||
};
|
||||
|
||||
runTsCompile(ts, compilerOptions, srcPathList);
|
||||
}
|
||||
|
||||
/**
|
||||
* Transform import/require path in the entry file to `esm` or `lib`.
|
||||
*/
|
||||
function transformRootFolderInEntry(entryFile, replacement) {
|
||||
let code = fs.readFileSync(entryFile, 'utf-8');
|
||||
// Simple regex replacement
|
||||
// TODO More robust way?
|
||||
assert(
|
||||
!/(import\s+|from\s+|require\(\s*)["']\.\/echarts\./.test(code)
|
||||
&& !/(import\s+|from\s+|require\(\s*)["']echarts\./.test(code),
|
||||
'Import echarts.xxx.ts is not supported.'
|
||||
);
|
||||
code = code.replace(/((import\s+|from\s+|require\(\s*)["'])\.\//g, `$1./${replacement}/`);
|
||||
fs.writeFileSync(
|
||||
entryFile,
|
||||
// Also transform zrender.
|
||||
singleTransformImport(code, replacement),
|
||||
'utf-8'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Transform `zrender/src` to `zrender/lib` in all files
|
||||
*/
|
||||
async function transformLibFiles(rooltFolder, replacement) {
|
||||
const files = await readFilePaths({
|
||||
patterns: ['**/*.js', '**/*.d.ts'],
|
||||
cwd: rooltFolder
|
||||
});
|
||||
// Simple regex replacement
|
||||
// TODO More robust way?
|
||||
for (let fileName of files) {
|
||||
let code = fs.readFileSync(fileName, 'utf-8');
|
||||
code = singleTransformImport(code, replacement);
|
||||
// For lower ts version, not use import type
|
||||
// TODO Use https://github.com/sandersn/downlevel-dts ?
|
||||
// if (fileName.endsWith('.d.ts')) {
|
||||
// code = singleTransformImportType(code);
|
||||
// }
|
||||
fs.writeFileSync(fileName, code, 'utf-8');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Transform zrender/src to zrender/lib
|
||||
* 2. Add .js extensions
|
||||
*/
|
||||
function singleTransformImport(code, replacement) {
|
||||
return transformImport(
|
||||
code.replace(/([\"\'])zrender\/src\//g, `$1zrender/${replacement}/`),
|
||||
(moduleName) => {
|
||||
// Ignore 'tslib' and 'echarts' in the extensions.
|
||||
if (moduleName === 'tslib' || moduleName === 'echarts') {
|
||||
return moduleName;
|
||||
}
|
||||
else if (moduleName === 'zrender/lib/export') {
|
||||
throw new Error('Should not import the whole zrender library.');
|
||||
}
|
||||
else if (moduleName.endsWith('.ts')) {
|
||||
// Replace ts with js
|
||||
return moduleName.replace(/\.ts$/, '.js');
|
||||
}
|
||||
else if (moduleName.endsWith('.js')) {
|
||||
return moduleName;
|
||||
}
|
||||
else {
|
||||
return moduleName + '.js'
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
// function singleTransformImportType(code) {
|
||||
// return code.replace(/import\s+type\s+/g, 'import ');
|
||||
// }
|
||||
|
||||
/**
|
||||
* @param {Object} transformOptions
|
||||
* @param {Object} transformOptions.filesGlobby {patterns: string[], cwd: string}
|
||||
* @param {string} [transformOptions.preamble] See './preamble.js'
|
||||
* @param {boolean} [transformOptions.transformDEV]
|
||||
*/
|
||||
async function transformCode({filesGlobby, preamble, transformDEV}) {
|
||||
|
||||
let filePaths = await readFilePaths(filesGlobby);
|
||||
|
||||
filePaths.map(filePath => {
|
||||
let code = fs.readFileSync(filePath, 'utf8');
|
||||
|
||||
if (transformDEV) {
|
||||
let result = transformDEVUtil.transform(code, false);
|
||||
code = result.code;
|
||||
}
|
||||
|
||||
code = autoGeneratedFileAlert + code;
|
||||
|
||||
if (preamble) {
|
||||
code = preamble + code;
|
||||
}
|
||||
|
||||
fs.writeFileSync(filePath, code, 'utf8');
|
||||
});
|
||||
}
|
||||
|
||||
async function readFilePaths({patterns, cwd}) {
|
||||
assert(patterns && cwd);
|
||||
return (
|
||||
await globby(patterns, {cwd})
|
||||
).map(
|
||||
srcPath => nodePath.resolve(cwd, srcPath)
|
||||
);
|
||||
}
|
||||
|
||||
// Bundle can be used in echarts-examples.
|
||||
async function bundleDTS() {
|
||||
|
||||
const outDir = nodePath.resolve(__dirname, '../types/dist');
|
||||
const commonConfig = {
|
||||
onwarn(warning, rollupWarn) {
|
||||
// Not warn circular dependency
|
||||
if (warning.code !== 'CIRCULAR_DEPENDENCY') {
|
||||
rollupWarn(warning);
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
dts({
|
||||
respectExternal: true
|
||||
})
|
||||
// {
|
||||
// generateBundle(options, bundle) {
|
||||
// for (let chunk of Object.values(bundle)) {
|
||||
// chunk.code = `
|
||||
// type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;
|
||||
// ${chunk.code}`
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
]
|
||||
};
|
||||
|
||||
// Bundle chunks.
|
||||
const parts = [
|
||||
'core', 'charts', 'components', 'renderers', 'option', 'features'
|
||||
];
|
||||
const inputs = {};
|
||||
parts.forEach(partName => {
|
||||
inputs[partName] = nodePath.resolve(__dirname, `../types/src/export/${partName}.d.ts`)
|
||||
});
|
||||
|
||||
const bundle = await rollup.rollup({
|
||||
input: inputs,
|
||||
...commonConfig
|
||||
});
|
||||
let idx = 1;
|
||||
await bundle.write({
|
||||
dir: outDir,
|
||||
minifyInternalExports: false,
|
||||
manualChunks: (id) => {
|
||||
// Only create one chunk.
|
||||
return 'shared';
|
||||
},
|
||||
chunkFileNames: 'shared.d.ts'
|
||||
});
|
||||
|
||||
// Bundle all in one
|
||||
const bundleAllInOne = await rollup.rollup({
|
||||
input: nodePath.resolve(__dirname, `../types/src/export/all.d.ts`),
|
||||
...commonConfig
|
||||
});
|
||||
await bundleAllInOne.write({
|
||||
file: nodePath.resolve(outDir, 'echarts.d.ts')
|
||||
});
|
||||
}
|
||||
|
||||
function readTSConfig() {
|
||||
// tsconfig.json may have comment string, which is invalid if
|
||||
// using `require('tsconfig.json'). So we use a loose parser.
|
||||
let filePath = nodePath.resolve(ecDir, 'tsconfig.json');
|
||||
const tsConfigText = fs.readFileSync(filePath, {encoding: 'utf8'});
|
||||
return (new Function(`return ( ${tsConfigText} )`))();
|
||||
}
|
||||
|
||||
|
||||
function generateEntries() {
|
||||
['charts', 'components', 'renderers', 'core', 'features', 'ssr/client/index'].forEach(entryPath => {
|
||||
if (entryPath !== 'option') {
|
||||
const jsCode = fs.readFileSync(nodePath.join(__dirname, `template/${entryPath}.js`), 'utf-8');
|
||||
fs.writeFileSync(nodePath.join(__dirname, `../${entryPath}.js`), jsCode, 'utf-8');
|
||||
}
|
||||
|
||||
// Make the d.ts in the same dir as .js, so that the can be found by tsc.
|
||||
// package.json "types" in "exports" does not always seam to work.
|
||||
const dtsCode = fs.readFileSync(nodePath.join(__dirname, `/template/${entryPath}.d.ts`), 'utf-8');
|
||||
fs.writeFileSync(nodePath.join(__dirname, `../${entryPath}.d.ts`), dtsCode, 'utf-8');
|
||||
});
|
||||
}
|
||||
|
||||
module.exports.readTSConfig = readTSConfig;
|
231
echarts-master/build/preamble.js
Normal file
231
echarts-master/build/preamble.js
Normal file
@ -0,0 +1,231 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
const cStyleComment = `
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
`;
|
||||
|
||||
const hashComment = `
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
`;
|
||||
|
||||
const mlComment = `
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
-->
|
||||
|
||||
`;
|
||||
|
||||
function hasPreamble(fileExt) {
|
||||
return fileExt && preambleMap[fileExt];
|
||||
}
|
||||
|
||||
function addPreamble(fileStr, fileExt) {
|
||||
if (fileStr && fileExt) {
|
||||
const addFn = addFns[fileExt];
|
||||
const headStr = preambleMap[fileExt];
|
||||
return addFn && headStr && addFn(headStr, fileStr);
|
||||
}
|
||||
}
|
||||
|
||||
const addFns = {
|
||||
|
||||
ts: function (headStr, fileStr) {
|
||||
return headStr + fileStr;
|
||||
},
|
||||
|
||||
js: function (headStr, fileStr) {
|
||||
return headStr + fileStr;
|
||||
},
|
||||
|
||||
css: function (headStr, fileStr) {
|
||||
return headStr + fileStr;
|
||||
},
|
||||
|
||||
java: function (headStr, fileStr) {
|
||||
return headStr + fileStr;
|
||||
},
|
||||
|
||||
yml: addShellLikeHeader,
|
||||
|
||||
yaml: addShellLikeHeader,
|
||||
|
||||
sh: addShellLikeHeader,
|
||||
|
||||
html: function (headStr, fileStr) {
|
||||
// Git diff enables manual check.
|
||||
let resultStr = fileStr.replace(/^\s*<!DOCTYPE\s[^<>]+>/i, '$&' + headStr);
|
||||
// If no doctype
|
||||
if (resultStr.length === fileStr.length) {
|
||||
resultStr = headStr + fileStr;
|
||||
}
|
||||
return resultStr;
|
||||
},
|
||||
|
||||
xml: xmlAddFn,
|
||||
|
||||
xsl: xmlAddFn
|
||||
};
|
||||
|
||||
function addShellLikeHeader(headStr, fileStr) {
|
||||
// Git diff enables manual check.
|
||||
if (/^#\!/.test(fileStr)) {
|
||||
const lines = fileStr.split('\n');
|
||||
lines.splice(1, 0, headStr);
|
||||
return lines.join('\n');
|
||||
}
|
||||
else {
|
||||
return headStr + fileStr;
|
||||
}
|
||||
}
|
||||
|
||||
function xmlAddFn(headStr, fileStr) {
|
||||
// Git diff enables manual check.
|
||||
let resultStr = fileStr.replace(/^\s*<\?xml\s[^<>]+\?>/i, '$&' + headStr);
|
||||
// If no <?xml version='1.0' ?>
|
||||
if (resultStr.length === fileStr.length) {
|
||||
resultStr = headStr + fileStr;
|
||||
}
|
||||
return resultStr;
|
||||
}
|
||||
|
||||
const preambleMap = {
|
||||
ts: cStyleComment,
|
||||
js: cStyleComment,
|
||||
css: cStyleComment,
|
||||
java: cStyleComment,
|
||||
yml: hashComment,
|
||||
yaml: hashComment,
|
||||
sh: hashComment,
|
||||
html: mlComment,
|
||||
xml: mlComment,
|
||||
xsl: mlComment
|
||||
};
|
||||
|
||||
const licenseReg = [
|
||||
{name: 'Apache', reg: /apache (license|commons)/i},
|
||||
{name: 'BSD', reg: /BSD/},
|
||||
{name: 'LGPL', reg: /LGPL/},
|
||||
{name: 'GPL', reg: /GPL/},
|
||||
{name: 'Mozilla', reg: /mozilla public/i},
|
||||
{name: 'MIT', reg: /mit license/i},
|
||||
{name: 'BSD-d3', reg: /Copyright\s+\(c\)\s+2010-2015,\s+Michael\s+Bostock/i}
|
||||
];
|
||||
|
||||
function extractLicense(fileStr, fileExt) {
|
||||
let commentText = extractComment(fileStr.trim(), fileExt);
|
||||
if (!commentText) {
|
||||
return;
|
||||
}
|
||||
for (let i = 0; i < licenseReg.length; i++) {
|
||||
if (licenseReg[i].reg.test(commentText)) {
|
||||
return licenseReg[i].name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const cStyleCommentReg = /\/\*[\S\s]*?\*\//;
|
||||
const hashCommentReg = /^\s*#.*$/gm;
|
||||
const mlCommentReg = /<\!\-\-[\S\s]*?\-\->/;
|
||||
const commentReg = {
|
||||
ts: cStyleCommentReg,
|
||||
js: cStyleCommentReg,
|
||||
css: cStyleCommentReg,
|
||||
java: cStyleCommentReg,
|
||||
yml: hashCommentReg,
|
||||
yaml: hashCommentReg,
|
||||
sh: hashCommentReg,
|
||||
html: mlCommentReg,
|
||||
xml: mlCommentReg,
|
||||
xsl: mlCommentReg
|
||||
};
|
||||
|
||||
function extractComment(str, fileExt) {
|
||||
const reg = commentReg[fileExt];
|
||||
|
||||
if (!fileExt || !reg || !str) {
|
||||
return;
|
||||
}
|
||||
|
||||
reg.lastIndex = 0;
|
||||
|
||||
if (fileExt === 'sh' || fileExt === 'yml' || fileExt === 'yaml') {
|
||||
let result = str.match(reg);
|
||||
return result && result.join('\n');
|
||||
}
|
||||
else {
|
||||
let result = reg.exec(str);
|
||||
return result && result[0];
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Object.assign({
|
||||
extractLicense,
|
||||
hasPreamble,
|
||||
addPreamble
|
||||
}, preambleMap);
|
164
echarts-master/build/source-release/prepareReleaseMaterials.js
Normal file
164
echarts-master/build/source-release/prepareReleaseMaterials.js
Normal file
@ -0,0 +1,164 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
// Prepare release materials like mail, release note
|
||||
|
||||
const commander = require('commander');
|
||||
const fse = require('fs-extra');
|
||||
const pathTool = require('path');
|
||||
const https = require('https');
|
||||
|
||||
commander
|
||||
.usage('[options]')
|
||||
.description([
|
||||
'Generate source release'
|
||||
].join('\n'))
|
||||
.option(
|
||||
'--rcversion <version>',
|
||||
'Release version'
|
||||
)
|
||||
.option(
|
||||
'--commit <commit>',
|
||||
'Hash of commit'
|
||||
)
|
||||
.option(
|
||||
'--repo <repo>',
|
||||
'Repo'
|
||||
)
|
||||
.option(
|
||||
'--out <out>',
|
||||
'Out directory. Default to be tmp/release-mail'
|
||||
)
|
||||
.parse(process.argv);
|
||||
|
||||
const outDir = pathTool.resolve(process.cwd(), commander.out || 'tmp/release-materials');
|
||||
const releaseCommit = commander.commit;
|
||||
if (!releaseCommit) {
|
||||
throw new Error('Release commit is required');
|
||||
}
|
||||
const repo = commander.repo || 'apache/echarts';
|
||||
|
||||
let rcVersion = commander.rcversion + '';
|
||||
if (rcVersion.startsWith('v')) { // tag may have v prefix, v5.1.0
|
||||
rcVersion = rcVersion.substr(1);
|
||||
}
|
||||
if (rcVersion.indexOf('-rc.') < 0) {
|
||||
throw new Error('Only rc version is accepeted.');
|
||||
}
|
||||
|
||||
const parts = /(\d+)\.(\d+)\.(\d+)\-rc\.(\d+)/.exec(rcVersion);
|
||||
if (!parts) {
|
||||
throw new Error(`Invalid version number ${rcVersion}`);
|
||||
}
|
||||
|
||||
const major = +parts[1];
|
||||
const minor = +parts[2];
|
||||
const patch = +parts[3];
|
||||
const rc = +parts[4];
|
||||
|
||||
const stableVersion = `${major}.${minor}.${patch}`;
|
||||
const releaseFullName = `Apache ECharts ${stableVersion} (release candidate ${rc})`;
|
||||
|
||||
console.log('[Release Repo] ' + repo);
|
||||
console.log('[Release Version] ' + rcVersion);
|
||||
console.log('[Release Commit] ' + releaseCommit);
|
||||
console.log('[Release Name] ' + releaseFullName);
|
||||
|
||||
const voteTpl = fse.readFileSync(pathTool.join(__dirname, './template/vote-release.tpl'), 'utf-8');
|
||||
const voteResultTpl = fse.readFileSync(pathTool.join(__dirname, './template/vote-result.tpl'), 'utf-8');
|
||||
const announceTpl = fse.readFileSync(pathTool.join(__dirname, './template/announce-release.tpl'), 'utf-8');
|
||||
const voteUntil = new Date(+new Date() + (72 + 12) * 3600 * 1000); // 3.5 day.
|
||||
|
||||
fse.ensureDirSync(outDir);
|
||||
fse.writeFileSync(
|
||||
pathTool.resolve(outDir, 'vote.txt'),
|
||||
voteTpl.replace(/{{ECHARTS_RELEASE_VERSION}}/g, rcVersion)
|
||||
.replace(/{{ECHARTS_RELEASE_VERSION_FULL_NAME}}/g, releaseFullName)
|
||||
.replace(/{{ECHARTS_RELEASE_COMMIT}}/g, releaseCommit)
|
||||
.replace(/{{VOTE_UNTIL}}/g, voteUntil.toISOString()),
|
||||
'utf-8'
|
||||
);
|
||||
|
||||
fse.ensureDirSync(outDir);
|
||||
fse.writeFileSync(
|
||||
pathTool.resolve(outDir, 'vote-result.txt'),
|
||||
voteResultTpl.replace(/{{ECHARTS_RELEASE_VERSION}}/g, rcVersion)
|
||||
.replace(/{{ECHARTS_RELEASE_VERSION_FULL_NAME}}/g, releaseFullName),
|
||||
'utf-8'
|
||||
);
|
||||
|
||||
fse.writeFileSync(
|
||||
pathTool.resolve(outDir, 'announce.txt'),
|
||||
announceTpl.replace(/{{ECHARTS_RELEASE_VERSION}}/g, stableVersion)
|
||||
.replace(/{{ECHARTS_RELEASE_COMMIT}}/g, releaseCommit),
|
||||
'utf-8'
|
||||
);
|
||||
|
||||
|
||||
// Fetch RELEASE_NOTE
|
||||
https.get({
|
||||
hostname: 'api.github.com',
|
||||
path: `/repos/${repo}/releases`,
|
||||
headers: {
|
||||
'User-Agent': 'NodeJS'
|
||||
}
|
||||
}, function (res) {
|
||||
console.log(`https://api.github.com/repos/${repo}/releases`);
|
||||
if (res.statusCode !== 200) {
|
||||
console.error(`Failed to fetch releases ${res.statusCode}`);
|
||||
res.resume();
|
||||
return;
|
||||
}
|
||||
|
||||
res.setEncoding('utf8');
|
||||
let rawData = '';
|
||||
res.on('data', (chunk) => {
|
||||
rawData += chunk;
|
||||
});
|
||||
res.on('end', () => {
|
||||
let releaseNote = '';
|
||||
|
||||
const releases = JSON.parse(rawData);
|
||||
const found = releases.find(release => release.name === rcVersion);
|
||||
if (!found) {
|
||||
throw 'Can\'t found release';
|
||||
}
|
||||
else {
|
||||
releaseNote = found.body.trim();
|
||||
if (!releaseNote) {
|
||||
throw 'Release description is empty';
|
||||
}
|
||||
}
|
||||
|
||||
const firstLine = releaseNote.split('\n')[0];
|
||||
if (firstLine.indexOf(stableVersion) < 0) {
|
||||
// Add version if release note is not start with version.
|
||||
}
|
||||
releaseNote = `## ${stableVersion}\n\n${releaseNote}`;
|
||||
|
||||
fse.writeFileSync(
|
||||
pathTool.resolve(outDir, 'RELEASE_NOTE.txt'),
|
||||
releaseNote,
|
||||
'utf-8'
|
||||
);
|
||||
});
|
||||
}).on('error', (e) => {
|
||||
throw e;
|
||||
});
|
@ -0,0 +1,26 @@
|
||||
--- Mail to: ---
|
||||
dev@echarts.apache.org
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
--- Subject: ---
|
||||
[ANNOUNCE] Release Apache ECharts {{ECHARTS_RELEASE_VERSION}}
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
|
||||
Hi all,
|
||||
|
||||
The Apache ECharts team is proud to announce Apache ECharts {{ECHARTS_RELEASE_VERSION}}.
|
||||
|
||||
Apache ECharts is a powerful, interactive charting and data visualization library for browser.
|
||||
|
||||
Download Links: https://echarts.apache.org/download.html
|
||||
|
||||
Release Notes: https://echarts.apache.org/changelog.html
|
||||
|
||||
Website: https://echarts.apache.org/
|
||||
|
||||
|
||||
ECharts Resources:
|
||||
- Issue: https://github.com/apache/echarts/issues
|
||||
- Build Guide: https://github.com/apache/echarts/blob/{{ECHARTS_RELEASE_VERSION}}/README.md
|
||||
- Mailing list: dev@echarts.apache.org
|
@ -0,0 +1,44 @@
|
||||
--- Mail To: ---
|
||||
dev@echarts.apache.org
|
||||
-----------------------------------------------------------
|
||||
|
||||
--- Subject: ---
|
||||
[VOTE] Release {{ECHARTS_RELEASE_VERSION_FULL_NAME}}
|
||||
-----------------------------------------------------------
|
||||
|
||||
Dear community,
|
||||
|
||||
We are pleased to be calling this vote for the release of {{ECHARTS_RELEASE_VERSION_FULL_NAME}}.
|
||||
|
||||
The release candidate to be voted over is available at:
|
||||
https://dist.apache.org/repos/dist/dev/echarts/{{ECHARTS_RELEASE_VERSION}}/
|
||||
|
||||
The release candidate is signed with a GPG key available at:
|
||||
https://dist.apache.org/repos/dist/dev/echarts/KEYS
|
||||
|
||||
The Git commit for this release is:
|
||||
https://gitbox.apache.org/repos/asf?p=echarts.git;a=commit;h={{ECHARTS_RELEASE_COMMIT}}
|
||||
|
||||
The Release Note is available in:
|
||||
https://dist.apache.org/repos/dist/dev/echarts/{{ECHARTS_RELEASE_VERSION}}/RELEASE_NOTE.txt
|
||||
|
||||
Build Guide:
|
||||
https://github.com/apache/echarts/blob/{{ECHARTS_RELEASE_VERSION}}/README.md#build
|
||||
|
||||
NPM Install:
|
||||
npm i echarts@{{ECHARTS_RELEASE_VERSION}}
|
||||
https://www.npmjs.com/package/echarts/v/{{ECHARTS_RELEASE_VERSION}}
|
||||
|
||||
Please vote on releasing this package as:
|
||||
{{ECHARTS_RELEASE_VERSION_FULL_NAME}}
|
||||
by "{{VOTE_UNTIL}}".
|
||||
|
||||
[ ] +1 Release this package
|
||||
[ ] 0 I don't feel strongly about it, but don't object
|
||||
[ ] -1 Do not release this package because...
|
||||
|
||||
Anyone can participate in testing and voting, not just committers, please
|
||||
feel free to try out the release candidate and provide your votes.
|
||||
|
||||
A checklist for reference:
|
||||
https://cwiki.apache.org/confluence/display/ECHARTS/Apache+ECharts+Release+Checklist
|
23
echarts-master/build/source-release/template/vote-result.tpl
Normal file
23
echarts-master/build/source-release/template/vote-result.tpl
Normal file
@ -0,0 +1,23 @@
|
||||
--- Mail To: ---
|
||||
dev@echarts.apache.org
|
||||
-----------------------------------------------------------
|
||||
|
||||
--- Subject: ---
|
||||
[RESULT] [VOTE] Release {{ECHARTS_RELEASE_VERSION_FULL_NAME}}
|
||||
-----------------------------------------------------------
|
||||
|
||||
Thanks to all who voted or provided comments!
|
||||
|
||||
We received ______NUMBER_OF_+1_VOTES______ +1 votes from the PMC members, and the release has PASSED:
|
||||
|
||||
+1 ______NAME______ (binding)
|
||||
|
||||
Other votes from the community:
|
||||
|
||||
+1 ______NAME______
|
||||
|
||||
Vote thread:
|
||||
https://lists.apache.org/thread/xxx
|
||||
|
||||
I'm going to release the source release of Apache ECharts {{ECHARTS_RELEASE_VERSION}}.
|
||||
Thank you all for making this happen!
|
20
echarts-master/build/template/charts.d.ts
vendored
Normal file
20
echarts-master/build/template/charts.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './types/dist/charts';
|
27
echarts-master/build/template/charts.js
Normal file
27
echarts-master/build/template/charts.js
Normal file
@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
// In somehow. If we export like
|
||||
// export * as LineChart './chart/line/install'
|
||||
// The exported code will be transformed to
|
||||
// import * as LineChart_1 './chart/line/install'; export {LineChart_1 as LineChart};
|
||||
// Treeshaking in webpack will not work even if we configured sideEffects to false in package.json
|
||||
|
||||
export * from './lib/export/charts.js';
|
20
echarts-master/build/template/components.d.ts
vendored
Normal file
20
echarts-master/build/template/components.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './types/dist/components';
|
20
echarts-master/build/template/components.js
Normal file
20
echarts-master/build/template/components.js
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './lib/export/components.js';
|
20
echarts-master/build/template/core.d.ts
vendored
Normal file
20
echarts-master/build/template/core.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './types/dist/core';
|
20
echarts-master/build/template/core.js
Normal file
20
echarts-master/build/template/core.js
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './lib/export/core.js';
|
20
echarts-master/build/template/features.d.ts
vendored
Normal file
20
echarts-master/build/template/features.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './types/dist/features';
|
20
echarts-master/build/template/features.js
Normal file
20
echarts-master/build/template/features.js
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './lib/export/features.js';
|
20
echarts-master/build/template/option.d.ts
vendored
Normal file
20
echarts-master/build/template/option.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './types/dist/option';
|
20
echarts-master/build/template/renderers.d.ts
vendored
Normal file
20
echarts-master/build/template/renderers.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './types/dist/renderers';
|
20
echarts-master/build/template/renderers.js
Normal file
20
echarts-master/build/template/renderers.js
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './lib/export/renderers.js';
|
20
echarts-master/build/template/ssr/client/index.d.ts
vendored
Normal file
20
echarts-master/build/template/ssr/client/index.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './types/index';
|
20
echarts-master/build/template/ssr/client/index.js
Normal file
20
echarts-master/build/template/ssr/client/index.js
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
export * from './lib/index.js';
|
76
echarts-master/build/testDts.js
Normal file
76
echarts-master/build/testDts.js
Normal file
@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
const { TypeScriptVersion } = require('@definitelytyped/typescript-versions');
|
||||
const { typeScriptPath, install } = require('@definitelytyped/utils');
|
||||
const { runTsCompile } = require('./pre-publish');
|
||||
const globby = require('globby');
|
||||
const semver = require('semver');
|
||||
|
||||
const MIN_VERSION = '3.5.0';
|
||||
|
||||
async function installTs() {
|
||||
const tsVersions = getTypeScriptVersions();
|
||||
for (const version of tsVersions) {
|
||||
await install(version);
|
||||
}
|
||||
}
|
||||
|
||||
async function runTests() {
|
||||
const compilerOptions = {
|
||||
declaration: false,
|
||||
importHelpers: false,
|
||||
sourceMap: false,
|
||||
pretty: false,
|
||||
removeComments: false,
|
||||
allowJs: false,
|
||||
outDir: __dirname + '/../test/types/tmp',
|
||||
typeRoots: [__dirname + '/../types/dist'],
|
||||
rootDir: __dirname + '/../test/types',
|
||||
|
||||
// Must pass in most strict cases
|
||||
strict: true
|
||||
};
|
||||
const testsList = await globby(__dirname + '/../test/types/*.ts');
|
||||
|
||||
const tsVersions = getTypeScriptVersions();
|
||||
for (const version of tsVersions) {
|
||||
console.log(`Testing ts version ${version}`);
|
||||
const ts = require(typeScriptPath(version));
|
||||
await runTsCompile(ts, compilerOptions, testsList);
|
||||
|
||||
console.log(`Finished test of ts version ${version}`);
|
||||
}
|
||||
}
|
||||
|
||||
function getTypeScriptVersions() {
|
||||
return TypeScriptVersion.unsupported
|
||||
.concat(TypeScriptVersion.shipped)
|
||||
.filter(version => semver.gte(version + '.0', MIN_VERSION));
|
||||
}
|
||||
|
||||
async function main() {
|
||||
await installTs();
|
||||
await runTests();
|
||||
}
|
||||
|
||||
module.exports = main;
|
||||
|
||||
main();
|
58
echarts-master/build/transform-dev.js
Normal file
58
echarts-master/build/transform-dev.js
Normal file
@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
const babel = require('@babel/core');
|
||||
const parser = require('@babel/parser');
|
||||
|
||||
function transformDEVPlugin ({types, template}) {
|
||||
return {
|
||||
visitor: {
|
||||
Identifier: {
|
||||
enter(path, state) {
|
||||
if (path.isIdentifier({ name: '__DEV__' }) && path.scope.hasGlobal('__DEV__')) {
|
||||
path.replaceWith(
|
||||
parser.parseExpression(state.opts.expr)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
module.exports.transform = function (sourceCode, sourcemap, expr) {
|
||||
let {code, map} = babel.transformSync(sourceCode, {
|
||||
plugins: [ [transformDEVPlugin, {
|
||||
expr: expr || 'process.env.NODE_ENV !== \'production\''
|
||||
}] ],
|
||||
compact: false,
|
||||
sourceMaps: sourcemap
|
||||
});
|
||||
|
||||
return {code, map};
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {string} code
|
||||
* @throws {Error} If check failed.
|
||||
*/
|
||||
module.exports.recheckDEV = function (code) {
|
||||
return code.indexOf('process.env.NODE_ENV') >= 0;
|
||||
};
|
47
echarts-master/extension-src/.eslintrc.yaml
Normal file
47
echarts-master/extension-src/.eslintrc.yaml
Normal file
@ -0,0 +1,47 @@
|
||||
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
# Note:
|
||||
# If eslint does not work in VSCode, please check:
|
||||
# (1) Whether "@typescript-eslint/eslint-plugin" and "@typescript-eslint/parser"
|
||||
# are npm installed locally. Should better in the same version.
|
||||
# (2) Whether "VSCode ESlint extension" is installed.
|
||||
# (3) If the project folder is not the root folder of your working space, please
|
||||
# config the "VSCode ESlint extension" in "settings":
|
||||
# ```json
|
||||
# "eslint.workingDirectories": [{"mode": "auto"}]
|
||||
# ```
|
||||
# Note that it should be "workingDirectories" rather than "WorkingDirectories".
|
||||
|
||||
parser: "@typescript-eslint/parser"
|
||||
parserOptions:
|
||||
ecmaVersion: 6
|
||||
sourceType: module
|
||||
ecmaFeatures:
|
||||
modules: true
|
||||
project: "tsconfig.json"
|
||||
plugins: ["@typescript-eslint"]
|
||||
env:
|
||||
browser: true
|
||||
node: true
|
||||
es6: false
|
||||
globals:
|
||||
jQuery: false
|
||||
Promise: false
|
||||
__DEV__: true
|
||||
extends: '../.eslintrc-common.yaml'
|
248
echarts-master/extension-src/bmap/BMapCoordSys.ts
Normal file
248
echarts-master/extension-src/bmap/BMapCoordSys.ts
Normal file
@ -0,0 +1,248 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
// @ts-nocheck
|
||||
/* global BMap */
|
||||
|
||||
import {
|
||||
util as zrUtil,
|
||||
graphic,
|
||||
matrix
|
||||
} from 'echarts';
|
||||
|
||||
function BMapCoordSys(bmap, api) {
|
||||
this._bmap = bmap;
|
||||
this.dimensions = ['lng', 'lat'];
|
||||
this._mapOffset = [0, 0];
|
||||
|
||||
this._api = api;
|
||||
|
||||
this._projection = new BMap.MercatorProjection();
|
||||
}
|
||||
|
||||
BMapCoordSys.prototype.type = 'bmap';
|
||||
|
||||
BMapCoordSys.prototype.dimensions = ['lng', 'lat'];
|
||||
|
||||
BMapCoordSys.prototype.setZoom = function (zoom) {
|
||||
this._zoom = zoom;
|
||||
};
|
||||
|
||||
BMapCoordSys.prototype.setCenter = function (center) {
|
||||
this._center = this._projection.lngLatToPoint(new BMap.Point(center[0], center[1]));
|
||||
};
|
||||
|
||||
BMapCoordSys.prototype.setMapOffset = function (mapOffset) {
|
||||
this._mapOffset = mapOffset;
|
||||
};
|
||||
|
||||
BMapCoordSys.prototype.getBMap = function () {
|
||||
return this._bmap;
|
||||
};
|
||||
|
||||
BMapCoordSys.prototype.dataToPoint = function (data) {
|
||||
const point = new BMap.Point(data[0], data[1]);
|
||||
// TODO mercator projection is toooooooo slow
|
||||
// let mercatorPoint = this._projection.lngLatToPoint(point);
|
||||
|
||||
// let width = this._api.getZr().getWidth();
|
||||
// let height = this._api.getZr().getHeight();
|
||||
// let divider = Math.pow(2, 18 - 10);
|
||||
// return [
|
||||
// Math.round((mercatorPoint.x - this._center.x) / divider + width / 2),
|
||||
// Math.round((this._center.y - mercatorPoint.y) / divider + height / 2)
|
||||
// ];
|
||||
const px = this._bmap.pointToOverlayPixel(point);
|
||||
const mapOffset = this._mapOffset;
|
||||
return [px.x - mapOffset[0], px.y - mapOffset[1]];
|
||||
};
|
||||
|
||||
BMapCoordSys.prototype.pointToData = function (pt) {
|
||||
const mapOffset = this._mapOffset;
|
||||
pt = this._bmap.overlayPixelToPoint({
|
||||
x: pt[0] + mapOffset[0],
|
||||
y: pt[1] + mapOffset[1]
|
||||
});
|
||||
return [pt.lng, pt.lat];
|
||||
};
|
||||
|
||||
BMapCoordSys.prototype.getViewRect = function () {
|
||||
const api = this._api;
|
||||
return new graphic.BoundingRect(0, 0, api.getWidth(), api.getHeight());
|
||||
};
|
||||
|
||||
BMapCoordSys.prototype.getRoamTransform = function () {
|
||||
return matrix.create();
|
||||
};
|
||||
|
||||
BMapCoordSys.prototype.prepareCustoms = function () {
|
||||
const rect = this.getViewRect();
|
||||
return {
|
||||
coordSys: {
|
||||
// The name exposed to user is always 'cartesian2d' but not 'grid'.
|
||||
type: 'bmap',
|
||||
x: rect.x,
|
||||
y: rect.y,
|
||||
width: rect.width,
|
||||
height: rect.height
|
||||
},
|
||||
api: {
|
||||
coord: zrUtil.bind(this.dataToPoint, this),
|
||||
size: zrUtil.bind(dataToCoordSize, this)
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
BMapCoordSys.prototype.convertToPixel = function (ecModel, finder, value) {
|
||||
// here we ignore finder as only one bmap component is allowed
|
||||
return this.dataToPoint(value);
|
||||
};
|
||||
|
||||
BMapCoordSys.prototype.convertFromPixel = function (ecModel, finder, value) {
|
||||
return this.pointToData(value);
|
||||
};
|
||||
|
||||
function dataToCoordSize(dataSize, dataItem) {
|
||||
dataItem = dataItem || [0, 0];
|
||||
return zrUtil.map([0, 1], function (dimIdx) {
|
||||
const val = dataItem[dimIdx];
|
||||
const halfSize = dataSize[dimIdx] / 2;
|
||||
const p1 = [];
|
||||
const p2 = [];
|
||||
p1[dimIdx] = val - halfSize;
|
||||
p2[dimIdx] = val + halfSize;
|
||||
p1[1 - dimIdx] = p2[1 - dimIdx] = dataItem[1 - dimIdx];
|
||||
return Math.abs(this.dataToPoint(p1)[dimIdx] - this.dataToPoint(p2)[dimIdx]);
|
||||
}, this);
|
||||
}
|
||||
|
||||
let Overlay;
|
||||
|
||||
// For deciding which dimensions to use when creating list data
|
||||
BMapCoordSys.dimensions = BMapCoordSys.prototype.dimensions;
|
||||
|
||||
function createOverlayCtor() {
|
||||
function Overlay(root) {
|
||||
this._root = root;
|
||||
}
|
||||
|
||||
Overlay.prototype = new BMap.Overlay();
|
||||
/**
|
||||
* 初始化
|
||||
*
|
||||
* @param {BMap.Map} map
|
||||
* @override
|
||||
*/
|
||||
Overlay.prototype.initialize = function (map) {
|
||||
map.getPanes().labelPane.appendChild(this._root);
|
||||
return this._root;
|
||||
};
|
||||
/**
|
||||
* @override
|
||||
*/
|
||||
Overlay.prototype.draw = function () {};
|
||||
|
||||
return Overlay;
|
||||
}
|
||||
|
||||
BMapCoordSys.create = function (ecModel, api) {
|
||||
let bmapCoordSys;
|
||||
const root = api.getDom();
|
||||
|
||||
// TODO Dispose
|
||||
ecModel.eachComponent('bmap', function (bmapModel) {
|
||||
const painter = api.getZr().painter;
|
||||
const viewportRoot = painter.getViewportRoot();
|
||||
if (typeof BMap === 'undefined') {
|
||||
throw new Error('BMap api is not loaded');
|
||||
}
|
||||
Overlay = Overlay || createOverlayCtor();
|
||||
if (bmapCoordSys) {
|
||||
throw new Error('Only one bmap component can exist');
|
||||
}
|
||||
let bmap;
|
||||
if (!bmapModel.__bmap) {
|
||||
// Not support IE8
|
||||
let bmapRoot = root.querySelector('.ec-extension-bmap');
|
||||
if (bmapRoot) {
|
||||
// Reset viewport left and top, which will be changed
|
||||
// in moving handler in BMapView
|
||||
viewportRoot.style.left = '0px';
|
||||
viewportRoot.style.top = '0px';
|
||||
root.removeChild(bmapRoot);
|
||||
}
|
||||
bmapRoot = document.createElement('div');
|
||||
bmapRoot.className = 'ec-extension-bmap';
|
||||
// fix #13424
|
||||
bmapRoot.style.cssText = 'position:absolute;width:100%;height:100%';
|
||||
root.appendChild(bmapRoot);
|
||||
|
||||
// initializes bmap
|
||||
let mapOptions = bmapModel.get('mapOptions');
|
||||
if (mapOptions) {
|
||||
mapOptions = zrUtil.clone(mapOptions);
|
||||
// Not support `mapType`, use `bmap.setMapType(MapType)` instead.
|
||||
delete mapOptions.mapType;
|
||||
}
|
||||
|
||||
bmap = bmapModel.__bmap = new BMap.Map(bmapRoot, mapOptions);
|
||||
|
||||
const overlay = new Overlay(viewportRoot);
|
||||
bmap.addOverlay(overlay);
|
||||
|
||||
// Override
|
||||
painter.getViewportRootOffset = function () {
|
||||
return {offsetLeft: 0, offsetTop: 0};
|
||||
};
|
||||
}
|
||||
bmap = bmapModel.__bmap;
|
||||
|
||||
// Set bmap options
|
||||
// centerAndZoom before layout and render
|
||||
const center = bmapModel.get('center');
|
||||
const zoom = bmapModel.get('zoom');
|
||||
if (center && zoom) {
|
||||
const bmapCenter = bmap.getCenter();
|
||||
const bmapZoom = bmap.getZoom();
|
||||
const centerOrZoomChanged = bmapModel.centerOrZoomChanged([bmapCenter.lng, bmapCenter.lat], bmapZoom);
|
||||
if (centerOrZoomChanged) {
|
||||
const pt = new BMap.Point(center[0], center[1]);
|
||||
bmap.centerAndZoom(pt, zoom);
|
||||
}
|
||||
}
|
||||
|
||||
bmapCoordSys = new BMapCoordSys(bmap, api);
|
||||
bmapCoordSys.setMapOffset(bmapModel.__mapOffset || [0, 0]);
|
||||
bmapCoordSys.setZoom(zoom);
|
||||
bmapCoordSys.setCenter(center);
|
||||
|
||||
bmapModel.coordinateSystem = bmapCoordSys;
|
||||
});
|
||||
|
||||
ecModel.eachSeries(function (seriesModel) {
|
||||
if (seriesModel.get('coordinateSystem') === 'bmap') {
|
||||
seriesModel.coordinateSystem = bmapCoordSys;
|
||||
}
|
||||
});
|
||||
|
||||
// return created coordinate systems
|
||||
return bmapCoordSys && [bmapCoordSys];
|
||||
};
|
||||
|
||||
export default BMapCoordSys;
|
62
echarts-master/extension-src/bmap/BMapModel.ts
Normal file
62
echarts-master/extension-src/bmap/BMapModel.ts
Normal file
@ -0,0 +1,62 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
// @ts-nocheck
|
||||
import * as echarts from 'echarts';
|
||||
|
||||
function v2Equal(a, b) {
|
||||
return a && b && a[0] === b[0] && a[1] === b[1];
|
||||
}
|
||||
|
||||
export default echarts.extendComponentModel({
|
||||
type: 'bmap',
|
||||
|
||||
getBMap: function () {
|
||||
// __bmap is injected when creating BMapCoordSys
|
||||
return this.__bmap;
|
||||
},
|
||||
|
||||
setCenterAndZoom: function (center, zoom) {
|
||||
this.option.center = center;
|
||||
this.option.zoom = zoom;
|
||||
},
|
||||
|
||||
centerOrZoomChanged: function (center, zoom) {
|
||||
const option = this.option;
|
||||
return !(v2Equal(center, option.center) && zoom === option.zoom);
|
||||
},
|
||||
|
||||
defaultOption: {
|
||||
|
||||
center: [104.114129, 37.550339],
|
||||
|
||||
zoom: 5,
|
||||
|
||||
// 2.0 https://lbsyun.baidu.com/custom/index.htm
|
||||
mapStyle: {},
|
||||
|
||||
// 3.0 https://lbsyun.baidu.com/index.php?title=open/custom
|
||||
mapStyleV2: {},
|
||||
|
||||
// See https://lbsyun.baidu.com/cms/jsapi/reference/jsapi_reference.html#a0b1
|
||||
mapOptions: {},
|
||||
|
||||
roam: false
|
||||
}
|
||||
});
|
142
echarts-master/extension-src/bmap/BMapView.ts
Normal file
142
echarts-master/extension-src/bmap/BMapView.ts
Normal file
@ -0,0 +1,142 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
// @ts-nocheck
|
||||
import * as echarts from 'echarts';
|
||||
|
||||
function isEmptyObject(obj) {
|
||||
for (const key in obj) {
|
||||
if (obj.hasOwnProperty(key)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
export default echarts.extendComponentView({
|
||||
type: 'bmap',
|
||||
|
||||
render: function (bMapModel, ecModel, api) {
|
||||
let rendering = true;
|
||||
|
||||
const bmap = bMapModel.getBMap();
|
||||
const viewportRoot = api.getZr().painter.getViewportRoot();
|
||||
const coordSys = bMapModel.coordinateSystem;
|
||||
const moveHandler = function (type, target) {
|
||||
if (rendering) {
|
||||
return;
|
||||
}
|
||||
const offsetEl = viewportRoot.parentNode.parentNode.parentNode;
|
||||
const mapOffset = [
|
||||
-parseInt(offsetEl.style.left, 10) || 0,
|
||||
-parseInt(offsetEl.style.top, 10) || 0
|
||||
];
|
||||
// only update style when map offset changed
|
||||
const viewportRootStyle = viewportRoot.style;
|
||||
const offsetLeft = mapOffset[0] + 'px';
|
||||
const offsetTop = mapOffset[1] + 'px';
|
||||
if (viewportRootStyle.left !== offsetLeft) {
|
||||
viewportRootStyle.left = offsetLeft;
|
||||
}
|
||||
if (viewportRootStyle.top !== offsetTop) {
|
||||
viewportRootStyle.top = offsetTop;
|
||||
}
|
||||
|
||||
coordSys.setMapOffset(mapOffset);
|
||||
bMapModel.__mapOffset = mapOffset;
|
||||
|
||||
api.dispatchAction({
|
||||
type: 'bmapRoam',
|
||||
animation: {
|
||||
duration: 0
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
function zoomEndHandler() {
|
||||
if (rendering) {
|
||||
return;
|
||||
}
|
||||
api.dispatchAction({
|
||||
type: 'bmapRoam',
|
||||
animation: {
|
||||
duration: 0
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
bmap.removeEventListener('moving', this._oldMoveHandler);
|
||||
bmap.removeEventListener('moveend', this._oldMoveHandler);
|
||||
bmap.removeEventListener('zoomend', this._oldZoomEndHandler);
|
||||
bmap.addEventListener('moving', moveHandler);
|
||||
bmap.addEventListener('moveend', moveHandler);
|
||||
bmap.addEventListener('zoomend', zoomEndHandler);
|
||||
|
||||
this._oldMoveHandler = moveHandler;
|
||||
this._oldZoomEndHandler = zoomEndHandler;
|
||||
|
||||
const roam = bMapModel.get('roam');
|
||||
if (roam && roam !== 'scale') {
|
||||
bmap.enableDragging();
|
||||
}
|
||||
else {
|
||||
bmap.disableDragging();
|
||||
}
|
||||
if (roam && roam !== 'move') {
|
||||
bmap.enableScrollWheelZoom();
|
||||
bmap.enableDoubleClickZoom();
|
||||
bmap.enablePinchToZoom();
|
||||
}
|
||||
else {
|
||||
bmap.disableScrollWheelZoom();
|
||||
bmap.disableDoubleClickZoom();
|
||||
bmap.disablePinchToZoom();
|
||||
}
|
||||
|
||||
/* map 2.0 */
|
||||
const originalStyle = bMapModel.__mapStyle;
|
||||
|
||||
const newMapStyle = bMapModel.get('mapStyle') || {};
|
||||
// FIXME, Not use JSON methods
|
||||
const mapStyleStr = JSON.stringify(newMapStyle);
|
||||
if (JSON.stringify(originalStyle) !== mapStyleStr) {
|
||||
// FIXME May have blank tile when dragging if setMapStyle
|
||||
if (!isEmptyObject(newMapStyle)) {
|
||||
bmap.setMapStyle(echarts.util.clone(newMapStyle));
|
||||
}
|
||||
bMapModel.__mapStyle = JSON.parse(mapStyleStr);
|
||||
}
|
||||
|
||||
/* map 3.0 */
|
||||
const originalStyle2 = bMapModel.__mapStyle2;
|
||||
|
||||
const newMapStyle2 = bMapModel.get('mapStyleV2') || {};
|
||||
// FIXME, Not use JSON methods
|
||||
const mapStyleStr2 = JSON.stringify(newMapStyle2);
|
||||
if (JSON.stringify(originalStyle2) !== mapStyleStr2) {
|
||||
// FIXME May have blank tile when dragging if setMapStyle
|
||||
if (!isEmptyObject(newMapStyle2)) {
|
||||
bmap.setMapStyleV2(echarts.util.clone(newMapStyle2));
|
||||
}
|
||||
bMapModel.__mapStyle2 = JSON.parse(mapStyleStr2);
|
||||
}
|
||||
|
||||
rendering = false;
|
||||
}
|
||||
});
|
84
echarts-master/extension-src/bmap/README.md
Normal file
84
echarts-master/extension-src/bmap/README.md
Normal file
@ -0,0 +1,84 @@
|
||||
## 百度地图扩展
|
||||
|
||||
ECharts 百度地图扩展,可以在百度地图上展现 [点图](https://echarts.apache.org/zh/option.html#series-scatter),[线图](https://echarts.apache.org/zh/option.html#series-lines),[热力图](https://echarts.apache.org/zh/option.html#series-heatmap) 等可视化。
|
||||
|
||||
|
||||
### 示例
|
||||
|
||||
[全国主要城市空气质量](https://echarts.apache.org/examples/zh/editor.html?c=effectScatter-bmap)
|
||||
|
||||
[北京公交路线](https://echarts.apache.org/examples/zh/editor.html?c=lines-bmap-bus)
|
||||
|
||||
[北京公交路线特效](https://echarts.apache.org/examples/zh/editor.html?c=lines-bmap-effect)
|
||||
|
||||
[杭州热门步行路线](https://echarts.apache.org/examples/zh/editor.html?c=heatmap-bmap)
|
||||
|
||||
[在地图上显示分箱图](https://echarts.apache.org/examples/zh/editor.html?c=map-bin)
|
||||
|
||||
|
||||
### 引入
|
||||
|
||||
可以直接引入打包好的扩展文件和百度地图的 jssdk
|
||||
|
||||
```html
|
||||
<!-- 引入百度地图的 JS SDK,这里需要使用你在百度地图开发者平台申请的 ak -->
|
||||
<!-- 如需使用百度地图 2.0 版本,请将 `v=3.0` 改为 `v=2.0` -->
|
||||
<script src="https://api.map.baidu.com/api?v=3.0&ak="></script>
|
||||
<!-- 引入 ECharts -->
|
||||
<script src="dist/echarts.min.js"></script>
|
||||
<!-- 引入百度地图扩展 -->
|
||||
<script src="dist/extension/bmap.min.js"></script>
|
||||
```
|
||||
|
||||
如果是 webpack 打包,也可以 require 引入
|
||||
|
||||
```js
|
||||
require('echarts');
|
||||
require('echarts/extension/bmap/bmap');
|
||||
```
|
||||
|
||||
插件会自动注册相应的组件。
|
||||
|
||||
### 使用
|
||||
|
||||
扩展主要提供了跟 geo 一样的坐标系和底图的绘制,因此配置方式非常简单,如下
|
||||
|
||||
```js
|
||||
option = {
|
||||
// 加载 bmap 组件
|
||||
bmap: {
|
||||
// 百度地图中心经纬度。默认为 [104.114129, 37.550339]。
|
||||
center: [120.13066322374, 30.240018034923],
|
||||
// 百度地图缩放级别。默认为 5。
|
||||
zoom: 14,
|
||||
// 是否开启拖拽缩放,可以只设置 'scale' 或者 'move'。默认关闭。
|
||||
roam: true,
|
||||
// 百度地图的旧版自定义样式,见 https://lbsyun.baidu.com/custom/index.htm
|
||||
mapStyle: {},
|
||||
// 百度地图 3.0 之后的新版自定义样式,见 https://lbsyun.baidu.com/index.php?title=open/custom
|
||||
mapStyleV2: {},
|
||||
// 百度地图的初始化配置,见 https://lbsyun.baidu.com/cms/jsapi/reference/jsapi_reference.html#a0b1
|
||||
mapOptions: {
|
||||
// 禁用百度地图自带的底图可点功能
|
||||
enableMapClick: false
|
||||
}
|
||||
},
|
||||
series: [{
|
||||
type: 'scatter',
|
||||
// 使用百度地图坐标系
|
||||
coordinateSystem: 'bmap',
|
||||
// 数据格式跟在 geo 坐标系上一样,每一项都是 [经度,纬度,数值大小,其它维度...]
|
||||
data: [ [120, 30, 1] ],
|
||||
// 编码数据项中第三个元素作为 value 维度
|
||||
encode: {
|
||||
value: 2
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
// 获取百度地图实例,使用百度地图自带的控件
|
||||
var bmap = chart.getModel().getComponent('bmap').getBMap();
|
||||
bmap.addControl(new BMap.MapTypeControl());
|
||||
```
|
||||
|
||||
|
46
echarts-master/extension-src/bmap/bmap.ts
Normal file
46
echarts-master/extension-src/bmap/bmap.ts
Normal file
@ -0,0 +1,46 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
// @ts-nocheck
|
||||
/**
|
||||
* BMap component extension
|
||||
*/
|
||||
|
||||
import * as echarts from 'echarts';
|
||||
import BMapCoordSys from './BMapCoordSys';
|
||||
|
||||
import './BMapModel';
|
||||
import './BMapView';
|
||||
|
||||
echarts.registerCoordinateSystem('bmap', BMapCoordSys);
|
||||
|
||||
// Action
|
||||
echarts.registerAction({
|
||||
type: 'bmapRoam',
|
||||
event: 'bmapRoam',
|
||||
update: 'updateLayout'
|
||||
}, function (payload, ecModel) {
|
||||
ecModel.eachComponent('bmap', function (bMapModel) {
|
||||
const bmap = bMapModel.getBMap();
|
||||
const center = bmap.getCenter();
|
||||
bMapModel.setCenterAndZoom([center.lng, center.lat], bmap.getZoom());
|
||||
});
|
||||
});
|
||||
|
||||
export const version = '1.0.0';
|
222
echarts-master/extension-src/dataTool/gexf.ts
Normal file
222
echarts-master/extension-src/dataTool/gexf.ts
Normal file
@ -0,0 +1,222 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
// @ts-nocheck
|
||||
/**
|
||||
* This is a parse of GEXF.
|
||||
*
|
||||
* The spec of GEXF:
|
||||
* https://gephi.org/gexf/1.2draft/gexf-12draft-primer.pdf
|
||||
*/
|
||||
|
||||
import * as zrUtil from 'zrender/src/core/util';
|
||||
|
||||
export function parse(xml) {
|
||||
let doc;
|
||||
if (typeof xml === 'string') {
|
||||
const parser = new DOMParser();
|
||||
doc = parser.parseFromString(xml, 'text/xml');
|
||||
}
|
||||
else {
|
||||
doc = xml;
|
||||
}
|
||||
if (!doc || doc.getElementsByTagName('parsererror').length) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const gexfRoot = getChildByTagName(doc, 'gexf');
|
||||
|
||||
if (!gexfRoot) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const graphRoot = getChildByTagName(gexfRoot, 'graph');
|
||||
|
||||
const attributes = parseAttributes(getChildByTagName(graphRoot, 'attributes'));
|
||||
const attributesMap = {};
|
||||
for (let i = 0; i < attributes.length; i++) {
|
||||
attributesMap[attributes[i].id] = attributes[i];
|
||||
}
|
||||
|
||||
return {
|
||||
nodes: parseNodes(getChildByTagName(graphRoot, 'nodes'), attributesMap),
|
||||
links: parseEdges(getChildByTagName(graphRoot, 'edges'))
|
||||
};
|
||||
}
|
||||
|
||||
function parseAttributes(parent) {
|
||||
return parent ? zrUtil.map(getChildrenByTagName(parent, 'attribute'), function (attribDom) {
|
||||
return {
|
||||
id: getAttr(attribDom, 'id'),
|
||||
title: getAttr(attribDom, 'title'),
|
||||
type: getAttr(attribDom, 'type')
|
||||
};
|
||||
}) : [];
|
||||
}
|
||||
|
||||
function parseNodes(parent, attributesMap) {
|
||||
return parent ? zrUtil.map(getChildrenByTagName(parent, 'node'), function (nodeDom) {
|
||||
|
||||
const id = getAttr(nodeDom, 'id');
|
||||
const label = getAttr(nodeDom, 'label');
|
||||
|
||||
const node = {
|
||||
id: id,
|
||||
name: label,
|
||||
itemStyle: {
|
||||
normal: {}
|
||||
}
|
||||
};
|
||||
|
||||
const vizSizeDom = getChildByTagName(nodeDom, 'viz:size');
|
||||
const vizPosDom = getChildByTagName(nodeDom, 'viz:position');
|
||||
const vizColorDom = getChildByTagName(nodeDom, 'viz:color');
|
||||
// let vizShapeDom = getChildByTagName(nodeDom, 'viz:shape');
|
||||
|
||||
const attvaluesDom = getChildByTagName(nodeDom, 'attvalues');
|
||||
|
||||
if (vizSizeDom) {
|
||||
node.symbolSize = parseFloat(getAttr(vizSizeDom, 'value'));
|
||||
}
|
||||
if (vizPosDom) {
|
||||
node.x = parseFloat(getAttr(vizPosDom, 'x'));
|
||||
node.y = parseFloat(getAttr(vizPosDom, 'y'));
|
||||
// z
|
||||
}
|
||||
if (vizColorDom) {
|
||||
node.itemStyle.normal.color = 'rgb(' + [
|
||||
getAttr(vizColorDom, 'r') | 0,
|
||||
getAttr(vizColorDom, 'g') | 0,
|
||||
getAttr(vizColorDom, 'b') | 0
|
||||
].join(',') + ')';
|
||||
}
|
||||
// if (vizShapeDom) {
|
||||
// node.shape = getAttr(vizShapeDom, 'shape');
|
||||
// }
|
||||
if (attvaluesDom) {
|
||||
const attvalueDomList = getChildrenByTagName(attvaluesDom, 'attvalue');
|
||||
|
||||
node.attributes = {};
|
||||
|
||||
for (let j = 0; j < attvalueDomList.length; j++) {
|
||||
const attvalueDom = attvalueDomList[j];
|
||||
const attId = getAttr(attvalueDom, 'for');
|
||||
let attValue = getAttr(attvalueDom, 'value');
|
||||
const attribute = attributesMap[attId];
|
||||
|
||||
if (attribute) {
|
||||
switch (attribute.type) {
|
||||
case 'integer':
|
||||
case 'long':
|
||||
attValue = parseInt(attValue, 10);
|
||||
break;
|
||||
case 'float':
|
||||
case 'double':
|
||||
attValue = parseFloat(attValue);
|
||||
break;
|
||||
case 'boolean':
|
||||
attValue = attValue.toLowerCase() === 'true';
|
||||
break;
|
||||
default:
|
||||
}
|
||||
node.attributes[attId] = attValue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return node;
|
||||
}) : [];
|
||||
}
|
||||
|
||||
function parseEdges(parent) {
|
||||
return parent ? zrUtil.map(getChildrenByTagName(parent, 'edge'), function (edgeDom) {
|
||||
const id = getAttr(edgeDom, 'id');
|
||||
const label = getAttr(edgeDom, 'label');
|
||||
|
||||
const sourceId = getAttr(edgeDom, 'source');
|
||||
const targetId = getAttr(edgeDom, 'target');
|
||||
|
||||
const edge = {
|
||||
id: id,
|
||||
name: label,
|
||||
source: sourceId,
|
||||
target: targetId,
|
||||
lineStyle: {
|
||||
normal: {}
|
||||
}
|
||||
};
|
||||
|
||||
const lineStyle = edge.lineStyle.normal;
|
||||
|
||||
const vizThicknessDom = getChildByTagName(edgeDom, 'viz:thickness');
|
||||
const vizColorDom = getChildByTagName(edgeDom, 'viz:color');
|
||||
// let vizShapeDom = getChildByTagName(edgeDom, 'viz:shape');
|
||||
|
||||
if (vizThicknessDom) {
|
||||
lineStyle.width = parseFloat(vizThicknessDom.getAttribute('value'));
|
||||
}
|
||||
if (vizColorDom) {
|
||||
lineStyle.color = 'rgb(' + [
|
||||
getAttr(vizColorDom, 'r') | 0,
|
||||
getAttr(vizColorDom, 'g') | 0,
|
||||
getAttr(vizColorDom, 'b') | 0
|
||||
].join(',') + ')';
|
||||
}
|
||||
// if (vizShapeDom) {
|
||||
// edge.shape = vizShapeDom.getAttribute('shape');
|
||||
// }
|
||||
|
||||
return edge;
|
||||
}) : [];
|
||||
}
|
||||
|
||||
function getAttr(el, attrName) {
|
||||
return el.getAttribute(attrName);
|
||||
}
|
||||
|
||||
function getChildByTagName(parent, tagName) {
|
||||
let node = parent.firstChild;
|
||||
|
||||
while (node) {
|
||||
if (
|
||||
node.nodeType !== 1
|
||||
|| node.nodeName.toLowerCase() !== tagName.toLowerCase()
|
||||
) {
|
||||
node = node.nextSibling;
|
||||
}
|
||||
else {
|
||||
return node;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
function getChildrenByTagName(parent, tagName) {
|
||||
let node = parent.firstChild;
|
||||
const children = [];
|
||||
while (node) {
|
||||
if (node.nodeName.toLowerCase() === tagName.toLowerCase()) {
|
||||
children.push(node);
|
||||
}
|
||||
node = node.nextSibling;
|
||||
}
|
||||
|
||||
return children;
|
||||
}
|
42
echarts-master/extension-src/dataTool/index.ts
Normal file
42
echarts-master/extension-src/dataTool/index.ts
Normal file
@ -0,0 +1,42 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
// @ts-nocheck
|
||||
import * as echarts from 'echarts';
|
||||
import * as gexf from './gexf';
|
||||
import prepareBoxplotData from './prepareBoxplotData';
|
||||
// import { boxplotTransform } from './boxplotTransform';
|
||||
|
||||
export const version = '1.0.0';
|
||||
|
||||
export {gexf};
|
||||
|
||||
export {prepareBoxplotData};
|
||||
// export {boxplotTransform};
|
||||
|
||||
// For backward compatibility, where the namespace `dataTool` will
|
||||
// be mounted on `echarts` is the extension `dataTool` is imported.
|
||||
// But the old version of echarts do not have `dataTool` namespace,
|
||||
// so check it before mounting.
|
||||
if (echarts.dataTool) {
|
||||
echarts.dataTool.version = version;
|
||||
echarts.dataTool.gexf = gexf;
|
||||
echarts.dataTool.prepareBoxplotData = prepareBoxplotData;
|
||||
// echarts.dataTool.boxplotTransform = boxplotTransform;
|
||||
}
|
114
echarts-master/extension-src/dataTool/prepareBoxplotData.ts
Normal file
114
echarts-master/extension-src/dataTool/prepareBoxplotData.ts
Normal file
@ -0,0 +1,114 @@
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
function asc<T extends number[]>(arr: T): T {
|
||||
arr.sort(function (a, b) {
|
||||
return a - b;
|
||||
});
|
||||
return arr;
|
||||
}
|
||||
|
||||
function quantile(ascArr: number[], p: number): number {
|
||||
const H = (ascArr.length - 1) * p + 1;
|
||||
const h = Math.floor(H);
|
||||
const v = +ascArr[h - 1];
|
||||
const e = H - h;
|
||||
return e ? v + e * (ascArr[h] - v) : v;
|
||||
}
|
||||
/**
|
||||
* See:
|
||||
* <https://en.wikipedia.org/wiki/Box_plot#cite_note-frigge_hoaglin_iglewicz-2>
|
||||
* <http://stat.ethz.ch/R-manual/R-devel/library/grDevices/html/boxplot.stats.html>
|
||||
*
|
||||
* Helper method for preparing data.
|
||||
*
|
||||
* @param {Array.<number>} rawData like
|
||||
* [
|
||||
* [12,232,443], (raw data set for the first box)
|
||||
* [3843,5545,1232], (raw data set for the second box)
|
||||
* ...
|
||||
* ]
|
||||
* @param {Object} [opt]
|
||||
*
|
||||
* @param {(number|string)} [opt.boundIQR=1.5] Data less than min bound is outlier.
|
||||
* default 1.5, means Q1 - 1.5 * (Q3 - Q1).
|
||||
* If 'none'/0 passed, min bound will not be used.
|
||||
* @param {(number|string)} [opt.layout='horizontal']
|
||||
* Box plot layout, can be 'horizontal' or 'vertical'
|
||||
* @return {Object} {
|
||||
* boxData: Array.<Array.<number>>
|
||||
* outliers: Array.<Array.<number>>
|
||||
* axisData: Array.<string>
|
||||
* }
|
||||
*/
|
||||
export default function (
|
||||
rawData: number[][],
|
||||
opt: {
|
||||
boundIQR?: number | 'none',
|
||||
layout?: 'horizontal' | 'vertical'
|
||||
}
|
||||
): {
|
||||
boxData: number[][]
|
||||
outliers: number[][]
|
||||
axisData: string[]
|
||||
} {
|
||||
opt = opt || {};
|
||||
const boxData = [];
|
||||
const outliers = [];
|
||||
const axisData: string[] = [];
|
||||
const boundIQR = opt.boundIQR;
|
||||
const useExtreme = boundIQR === 'none' || boundIQR === 0;
|
||||
|
||||
for (let i = 0; i < rawData.length; i++) {
|
||||
axisData.push(i + '');
|
||||
const ascList = asc(rawData[i].slice());
|
||||
|
||||
const Q1 = quantile(ascList, 0.25);
|
||||
const Q2 = quantile(ascList, 0.5);
|
||||
const Q3 = quantile(ascList, 0.75);
|
||||
const min = ascList[0];
|
||||
const max = ascList[ascList.length - 1];
|
||||
|
||||
const bound = (boundIQR == null ? 1.5 : boundIQR as number) * (Q3 - Q1);
|
||||
|
||||
const low = useExtreme
|
||||
? min
|
||||
: Math.max(min, Q1 - bound);
|
||||
const high = useExtreme
|
||||
? max
|
||||
: Math.min(max, Q3 + bound);
|
||||
|
||||
boxData.push([low, Q1, Q2, Q3, high]);
|
||||
|
||||
for (let j = 0; j < ascList.length; j++) {
|
||||
const dataItem = ascList[j];
|
||||
if (dataItem < low || dataItem > high) {
|
||||
const outlier = [i, dataItem];
|
||||
opt.layout === 'vertical' && outlier.reverse();
|
||||
outliers.push(outlier);
|
||||
}
|
||||
}
|
||||
}
|
||||
return {
|
||||
boxData: boxData,
|
||||
outliers: outliers,
|
||||
axisData: axisData
|
||||
};
|
||||
}
|
178
echarts-master/i18n/langAR-obj.js
Normal file
178
echarts-master/i18n/langAR-obj.js
Normal file
@ -0,0 +1,178 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Arabic.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
|
||||
time: {
|
||||
month: [
|
||||
'يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو',
|
||||
'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'
|
||||
],
|
||||
monthAbbr: [
|
||||
'يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو',
|
||||
'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'الأحد', 'الإثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'الأحد', 'الإثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'تحديد الكل',
|
||||
inverse: 'عكس التحديد'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'تحديد صندوقي',
|
||||
polygon: 'تحديد حلقي',
|
||||
lineX: 'تحديد أفقي',
|
||||
lineY: 'تحديد عمودي',
|
||||
keep: 'الاحتفاظ بالمحدد',
|
||||
clear: 'إلغاء التحديد'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'عرض البيانات',
|
||||
lang: ['عرض البيانات', 'إغلاق', 'تحديث']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'تكبير',
|
||||
back: 'استعادة التكبير'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'خطوط',
|
||||
bar: 'أشرطة',
|
||||
stack: 'تكديس',
|
||||
tiled: 'مربعات'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'استعادة'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'حفظ كملف صورة',
|
||||
lang: ['للحفظ كصورة انقر بالزر الأيمن']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'رسم بياني دائري',
|
||||
bar: 'رسم بياني شريطي',
|
||||
line: 'رسم بياني خطي',
|
||||
scatter: 'نقاط مبعثرة',
|
||||
effectScatter: 'نقاط مبعثرة متموجة',
|
||||
radar: 'رسم بياني راداري',
|
||||
tree: 'شجرة',
|
||||
treemap: 'مخطط شجري',
|
||||
boxplot: 'مخطط صندوقي',
|
||||
candlestick: 'مخطط شمعدان',
|
||||
k: 'رسم بياني خطي من النوع K',
|
||||
heatmap: 'خريطة حرارية',
|
||||
map: 'خريطة',
|
||||
parallel: 'خريطة الإحداثيات المتناظرة',
|
||||
lines: 'خطوط',
|
||||
graph: 'مخطط علائقي',
|
||||
sankey: 'مخطط ثعباني',
|
||||
funnel: 'مخطط هرمي',
|
||||
gauge: 'مقياس',
|
||||
pictorialBar: 'مخطط مصوّر',
|
||||
themeRiver: 'نمط خريطة النهر',
|
||||
sunburst: 'مخطط شمسي',
|
||||
custom: 'مخطط مخصص',
|
||||
chart: 'مخطط'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'هذا رسم بياني حول "{title}".',
|
||||
withoutTitle: 'هذا رسم بياني.'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' من النوع {seriesType} اسمه {seriesName}.',
|
||||
withoutName: ' من النوع {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. يتكون من {seriesCount} سلسلة.',
|
||||
withName: ' الـ {seriesId} هي سلسلة من النوع {seriesType} تستعرض {seriesName}.',
|
||||
withoutName: ' الـ {seriesId} هي سلسلة من النوع {seriesType}.',
|
||||
separator: {
|
||||
middle: '، ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'البيانات هي كالتالي: ',
|
||||
partialData: 'أول {displayCnt} عناصر هي: ',
|
||||
withName: 'قيمة العنصر {name} هي {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: '، ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
174
echarts-master/i18n/langAR.js
Normal file
174
echarts-master/i18n/langAR.js
Normal file
@ -0,0 +1,174 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Arabic.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
|
||||
time: {
|
||||
month: [
|
||||
'يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو',
|
||||
'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'
|
||||
],
|
||||
monthAbbr: [
|
||||
'يناير', 'فبراير', 'مارس', 'أبريل', 'مايو', 'يونيو',
|
||||
'يوليو', 'أغسطس', 'سبتمبر', 'أكتوبر', 'نوفمبر', 'ديسمبر'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'الأحد', 'الإثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'الأحد', 'الإثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'تحديد الكل',
|
||||
inverse: 'عكس التحديد'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'تحديد صندوقي',
|
||||
polygon: 'تحديد حلقي',
|
||||
lineX: 'تحديد أفقي',
|
||||
lineY: 'تحديد عمودي',
|
||||
keep: 'الاحتفاظ بالمحدد',
|
||||
clear: 'إلغاء التحديد'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'عرض البيانات',
|
||||
lang: ['عرض البيانات', 'إغلاق', 'تحديث']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'تكبير',
|
||||
back: 'استعادة التكبير'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'خطوط',
|
||||
bar: 'أشرطة',
|
||||
stack: 'تكديس',
|
||||
tiled: 'مربعات'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'استعادة'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'حفظ كملف صورة',
|
||||
lang: ['للحفظ كصورة انقر بالزر الأيمن']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'رسم بياني دائري',
|
||||
bar: 'رسم بياني شريطي',
|
||||
line: 'رسم بياني خطي',
|
||||
scatter: 'نقاط مبعثرة',
|
||||
effectScatter: 'نقاط مبعثرة متموجة',
|
||||
radar: 'رسم بياني راداري',
|
||||
tree: 'شجرة',
|
||||
treemap: 'مخطط شجري',
|
||||
boxplot: 'مخطط صندوقي',
|
||||
candlestick: 'مخطط شمعدان',
|
||||
k: 'رسم بياني خطي من النوع K',
|
||||
heatmap: 'خريطة حرارية',
|
||||
map: 'خريطة',
|
||||
parallel: 'خريطة الإحداثيات المتناظرة',
|
||||
lines: 'خطوط',
|
||||
graph: 'مخطط علائقي',
|
||||
sankey: 'مخطط ثعباني',
|
||||
funnel: 'مخطط هرمي',
|
||||
gauge: 'مقياس',
|
||||
pictorialBar: 'مخطط مصوّر',
|
||||
themeRiver: 'نمط خريطة النهر',
|
||||
sunburst: 'مخطط شمسي',
|
||||
custom: 'مخطط مخصص',
|
||||
chart: 'مخطط'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'هذا رسم بياني حول "{title}".',
|
||||
withoutTitle: 'هذا رسم بياني.'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' من النوع {seriesType} اسمه {seriesName}.',
|
||||
withoutName: ' من النوع {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. يتكون من {seriesCount} سلسلة.',
|
||||
withName: ' الـ {seriesId} هي سلسلة من النوع {seriesType} تستعرض {seriesName}.',
|
||||
withoutName: ' الـ {seriesId} هي سلسلة من النوع {seriesType}.',
|
||||
separator: {
|
||||
middle: '، ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'البيانات هي كالتالي: ',
|
||||
partialData: 'أول {displayCnt} عناصر هي: ',
|
||||
withName: 'قيمة العنصر {name} هي {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: '، ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
echarts.registerLocale('AR', localeObj);
|
||||
|
||||
});
|
175
echarts-master/i18n/langCS-obj.js
Normal file
175
echarts-master/i18n/langCS-obj.js
Normal file
@ -0,0 +1,175 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Czech.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen',
|
||||
'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Led', 'Úno', 'Bře', 'Dub', 'Kvě', 'Čvn',
|
||||
'Čvc', 'Srp', 'Zář', 'Říj', 'Lis', 'Pro'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Neděle', 'Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek', 'Sobota'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Vše',
|
||||
inverse: 'Inv'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Obdélníkový výběr',
|
||||
polygon: 'Lasso výběr',
|
||||
lineX: 'Horizontální výběr',
|
||||
lineY: 'Vertikální výběr',
|
||||
keep: 'Ponechat výběr',
|
||||
clear: 'Zrušit výběr'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Data',
|
||||
lang: ['Data', 'Zavřít', 'Obnovit']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Přiblížit',
|
||||
back: 'Oddálit'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Změnit na Spojnicový graf',
|
||||
bar: 'Změnit na Sloupcový graf',
|
||||
stack: 'Plošný',
|
||||
tiled: 'Tile'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Obnovit'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Uložit jako obrázek',
|
||||
lang: ['Obrázek uložte pravým kliknutím']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Výsečový graf',
|
||||
bar: 'Sloupcový graf',
|
||||
line: 'Spojnicový graf',
|
||||
scatter: 'XY bodový graf',
|
||||
effectScatter: 'Effect XY bodový graf',
|
||||
radar: 'Paprskový graf',
|
||||
tree: 'Strom',
|
||||
treemap: 'Stromová mapa',
|
||||
boxplot: 'Krabicový graf',
|
||||
candlestick: 'Burzovní graf',
|
||||
k: 'K spojnicový graf',
|
||||
heatmap: 'Teplotní mapa',
|
||||
map: 'Mapa',
|
||||
parallel: 'Rovnoběžné souřadnice',
|
||||
lines: 'Spojnicový graf',
|
||||
graph: 'Graf vztahů',
|
||||
sankey: 'Sankeyův diagram',
|
||||
funnel: 'Trychtýř (Funnel)',
|
||||
gauge: 'Indikátor',
|
||||
pictorialBar: 'Obrázkový sloupcový graf',
|
||||
themeRiver: 'Theme River Map',
|
||||
sunburst: 'Vícevrstvý prstencový graf',
|
||||
custom: 'Graficu persunalizatu',
|
||||
chart: 'Graf'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Toto je graf o "{title}"',
|
||||
withoutTitle: 'Toto je graf'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: '{seriesName} s typem {seriesType}.',
|
||||
withoutName: ' s typem {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. Obsahuje {seriesCount} řad.',
|
||||
withName: ' Řada {seriesId} je typu {seriesType} repreyentující {seriesName}.',
|
||||
withoutName: ' Řada {seriesId} je typu {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Všechna data jsou: ',
|
||||
partialData: 'První {displayCnt} položky jsou: ',
|
||||
withName: 'data pro {name} jsou {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
171
echarts-master/i18n/langCS.js
Normal file
171
echarts-master/i18n/langCS.js
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Czech.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen',
|
||||
'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Led', 'Úno', 'Bře', 'Dub', 'Kvě', 'Čvn',
|
||||
'Čvc', 'Srp', 'Zář', 'Říj', 'Lis', 'Pro'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Neděle', 'Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek', 'Sobota'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'Ne', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Vše',
|
||||
inverse: 'Inv'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Obdélníkový výběr',
|
||||
polygon: 'Lasso výběr',
|
||||
lineX: 'Horizontální výběr',
|
||||
lineY: 'Vertikální výběr',
|
||||
keep: 'Ponechat výběr',
|
||||
clear: 'Zrušit výběr'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Data',
|
||||
lang: ['Data', 'Zavřít', 'Obnovit']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Přiblížit',
|
||||
back: 'Oddálit'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Změnit na Spojnicový graf',
|
||||
bar: 'Změnit na Sloupcový graf',
|
||||
stack: 'Plošný',
|
||||
tiled: 'Tile'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Obnovit'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Uložit jako obrázek',
|
||||
lang: ['Obrázek uložte pravým kliknutím']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Výsečový graf',
|
||||
bar: 'Sloupcový graf',
|
||||
line: 'Spojnicový graf',
|
||||
scatter: 'XY bodový graf',
|
||||
effectScatter: 'Effect XY bodový graf',
|
||||
radar: 'Paprskový graf',
|
||||
tree: 'Strom',
|
||||
treemap: 'Stromová mapa',
|
||||
boxplot: 'Krabicový graf',
|
||||
candlestick: 'Burzovní graf',
|
||||
k: 'K spojnicový graf',
|
||||
heatmap: 'Teplotní mapa',
|
||||
map: 'Mapa',
|
||||
parallel: 'Rovnoběžné souřadnice',
|
||||
lines: 'Spojnicový graf',
|
||||
graph: 'Graf vztahů',
|
||||
sankey: 'Sankeyův diagram',
|
||||
funnel: 'Trychtýř (Funnel)',
|
||||
gauge: 'Indikátor',
|
||||
pictorialBar: 'Obrázkový sloupcový graf',
|
||||
themeRiver: 'Theme River Map',
|
||||
sunburst: 'Vícevrstvý prstencový graf',
|
||||
custom: 'Graficu persunalizatu',
|
||||
chart: 'Graf'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Toto je graf o "{title}"',
|
||||
withoutTitle: 'Toto je graf'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: '{seriesName} s typem {seriesType}.',
|
||||
withoutName: ' s typem {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. Obsahuje {seriesCount} řad.',
|
||||
withName: ' Řada {seriesId} je typu {seriesType} repreyentující {seriesName}.',
|
||||
withoutName: ' Řada {seriesId} je typu {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Všechna data jsou: ',
|
||||
partialData: 'První {displayCnt} položky jsou: ',
|
||||
withName: 'data pro {name} jsou {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
echarts.registerLocale('CS', localeObj);
|
||||
|
||||
});
|
175
echarts-master/i18n/langDE-obj.js
Normal file
175
echarts-master/i18n/langDE-obj.js
Normal file
@ -0,0 +1,175 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: German.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'Januar', 'Februar', 'März', 'April', 'Mai', 'Juni',
|
||||
'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Jan', 'Feb', 'Mrz', 'Apr', 'Mai', 'Jun',
|
||||
'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Alle',
|
||||
inverse: 'Invertiert'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Box Auswahl',
|
||||
polygon: 'Lasso Auswahl',
|
||||
lineX: 'Horizontale Auswahl',
|
||||
lineY: 'Vertikale Auswahl',
|
||||
keep: 'Bereich Auswahl',
|
||||
clear: 'Auswahl zurücksetzen'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Daten Ansicht',
|
||||
lang: ['Daten Ansicht', 'Schließen', 'Aktualisieren']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoom',
|
||||
back: 'Zoom zurücksetzen'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Zu Liniendiagramm wechseln',
|
||||
bar: 'Zu Balkendiagramm wechseln',
|
||||
stack: 'Stapel',
|
||||
tiled: 'Kachel'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Wiederherstellen'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Als Bild speichern',
|
||||
lang: ['Rechtsklick zum Speichern des Bildes']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Tortendiagramm',
|
||||
bar: 'Balkendiagramm',
|
||||
line: 'Liniendiagramm',
|
||||
scatter: 'Streudiagramm',
|
||||
effectScatter: 'Welligkeits-Streudiagramm',
|
||||
radar: 'Radar-Karte',
|
||||
tree: 'Baum',
|
||||
treemap: 'Baumkarte',
|
||||
boxplot: 'Boxplot',
|
||||
candlestick: 'Kerzenständer',
|
||||
k: 'K Liniendiagramm',
|
||||
heatmap: 'Heatmap',
|
||||
map: 'Karte',
|
||||
parallel: 'Parallele Koordinatenkarte',
|
||||
lines: 'Liniendiagramm',
|
||||
graph: 'Beziehungsgrafik',
|
||||
sankey: 'Sankey-Diagramm',
|
||||
funnel: 'Trichterdiagramm',
|
||||
gauge: 'Meßanzeige',
|
||||
pictorialBar: 'Bildlicher Balken',
|
||||
themeRiver: 'Thematische Flusskarte',
|
||||
sunburst: 'Sonnenausbruch',
|
||||
custom: 'Graficu persunalizatu',
|
||||
chart: 'Diagramm'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Dies ist ein Diagramm über "{title}"',
|
||||
withoutTitle: 'Dies ist ein Diagramm'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' mit Typ {seriesType} namens {seriesName}.',
|
||||
withoutName: ' mit Typ {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. Es besteht aus {seriesCount} Serienzählung.',
|
||||
withName: ' Die Serie {seriesId} ist ein {seriesType} welcher {seriesName} darstellt.',
|
||||
withoutName: ' Die {seriesId}-Reihe ist ein {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Die Daten sind wie folgt: ',
|
||||
partialData: 'Die ersten {displayCnt} Elemente sind: ',
|
||||
withName: 'die Daten für {name} sind {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ',',
|
||||
end: '.'
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
171
echarts-master/i18n/langDE.js
Normal file
171
echarts-master/i18n/langDE.js
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: German.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'Januar', 'Februar', 'März', 'April', 'Mai', 'Juni',
|
||||
'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Jan', 'Feb', 'Mrz', 'Apr', 'Mai', 'Jun',
|
||||
'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Alle',
|
||||
inverse: 'Invertiert'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Box Auswahl',
|
||||
polygon: 'Lasso Auswahl',
|
||||
lineX: 'Horizontale Auswahl',
|
||||
lineY: 'Vertikale Auswahl',
|
||||
keep: 'Bereich Auswahl',
|
||||
clear: 'Auswahl zurücksetzen'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Daten Ansicht',
|
||||
lang: ['Daten Ansicht', 'Schließen', 'Aktualisieren']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoom',
|
||||
back: 'Zoom zurücksetzen'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Zu Liniendiagramm wechseln',
|
||||
bar: 'Zu Balkendiagramm wechseln',
|
||||
stack: 'Stapel',
|
||||
tiled: 'Kachel'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Wiederherstellen'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Als Bild speichern',
|
||||
lang: ['Rechtsklick zum Speichern des Bildes']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Tortendiagramm',
|
||||
bar: 'Balkendiagramm',
|
||||
line: 'Liniendiagramm',
|
||||
scatter: 'Streudiagramm',
|
||||
effectScatter: 'Welligkeits-Streudiagramm',
|
||||
radar: 'Radar-Karte',
|
||||
tree: 'Baum',
|
||||
treemap: 'Baumkarte',
|
||||
boxplot: 'Boxplot',
|
||||
candlestick: 'Kerzenständer',
|
||||
k: 'K Liniendiagramm',
|
||||
heatmap: 'Heatmap',
|
||||
map: 'Karte',
|
||||
parallel: 'Parallele Koordinatenkarte',
|
||||
lines: 'Liniendiagramm',
|
||||
graph: 'Beziehungsgrafik',
|
||||
sankey: 'Sankey-Diagramm',
|
||||
funnel: 'Trichterdiagramm',
|
||||
gauge: 'Meßanzeige',
|
||||
pictorialBar: 'Bildlicher Balken',
|
||||
themeRiver: 'Thematische Flusskarte',
|
||||
sunburst: 'Sonnenausbruch',
|
||||
custom: 'Graficu persunalizatu',
|
||||
chart: 'Diagramm'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Dies ist ein Diagramm über "{title}"',
|
||||
withoutTitle: 'Dies ist ein Diagramm'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' mit Typ {seriesType} namens {seriesName}.',
|
||||
withoutName: ' mit Typ {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. Es besteht aus {seriesCount} Serienzählung.',
|
||||
withName: ' Die Serie {seriesId} ist ein {seriesType} welcher {seriesName} darstellt.',
|
||||
withoutName: ' Die {seriesId}-Reihe ist ein {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Die Daten sind wie folgt: ',
|
||||
partialData: 'Die ersten {displayCnt} Elemente sind: ',
|
||||
withName: 'die Daten für {name} sind {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ',',
|
||||
end: '.'
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
echarts.registerLocale('DE', localeObj);
|
||||
|
||||
});
|
175
echarts-master/i18n/langEN-obj.js
Normal file
175
echarts-master/i18n/langEN-obj.js
Normal file
@ -0,0 +1,175 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: English.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'January', 'February', 'March', 'April', 'May', 'June',
|
||||
'July', 'August', 'September', 'October', 'November', 'December'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
|
||||
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'All',
|
||||
inverse: 'Inv'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Box Select',
|
||||
polygon: 'Lasso Select',
|
||||
lineX: 'Horizontally Select',
|
||||
lineY: 'Vertically Select',
|
||||
keep: 'Keep Selections',
|
||||
clear: 'Clear Selections'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Data View',
|
||||
lang: ['Data View', 'Close', 'Refresh']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoom',
|
||||
back: 'Zoom Reset'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Switch to Line Chart',
|
||||
bar: 'Switch to Bar Chart',
|
||||
stack: 'Stack',
|
||||
tiled: 'Tile'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Restore'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Save as Image',
|
||||
lang: ['Right Click to Save Image']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Pie chart',
|
||||
bar: 'Bar chart',
|
||||
line: 'Line chart',
|
||||
scatter: 'Scatter plot',
|
||||
effectScatter: 'Ripple scatter plot',
|
||||
radar: 'Radar chart',
|
||||
tree: 'Tree',
|
||||
treemap: 'Treemap',
|
||||
boxplot: 'Boxplot',
|
||||
candlestick: 'Candlestick',
|
||||
k: 'K line chart',
|
||||
heatmap: 'Heat map',
|
||||
map: 'Map',
|
||||
parallel: 'Parallel coordinate map',
|
||||
lines: 'Line graph',
|
||||
graph: 'Relationship graph',
|
||||
sankey: 'Sankey diagram',
|
||||
funnel: 'Funnel chart',
|
||||
gauge: 'Gauge',
|
||||
pictorialBar: 'Pictorial bar',
|
||||
themeRiver: 'Theme River Map',
|
||||
sunburst: 'Sunburst',
|
||||
custom: 'Custom chart',
|
||||
chart: 'Chart'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'This is a chart about "{title}"',
|
||||
withoutTitle: 'This is a chart'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' with type {seriesType} named {seriesName}.',
|
||||
withoutName: ' with type {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. It consists of {seriesCount} series count.',
|
||||
withName: ' The {seriesId} series is a {seriesType} representing {seriesName}.',
|
||||
withoutName: ' The {seriesId} series is a {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'The data is as follows: ',
|
||||
partialData: 'The first {displayCnt} items are: ',
|
||||
withName: 'the data for {name} is {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
171
echarts-master/i18n/langEN.js
Normal file
171
echarts-master/i18n/langEN.js
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: English.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'January', 'February', 'March', 'April', 'May', 'June',
|
||||
'July', 'August', 'September', 'October', 'November', 'December'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
|
||||
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'All',
|
||||
inverse: 'Inv'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Box Select',
|
||||
polygon: 'Lasso Select',
|
||||
lineX: 'Horizontally Select',
|
||||
lineY: 'Vertically Select',
|
||||
keep: 'Keep Selections',
|
||||
clear: 'Clear Selections'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Data View',
|
||||
lang: ['Data View', 'Close', 'Refresh']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoom',
|
||||
back: 'Zoom Reset'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Switch to Line Chart',
|
||||
bar: 'Switch to Bar Chart',
|
||||
stack: 'Stack',
|
||||
tiled: 'Tile'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Restore'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Save as Image',
|
||||
lang: ['Right Click to Save Image']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Pie chart',
|
||||
bar: 'Bar chart',
|
||||
line: 'Line chart',
|
||||
scatter: 'Scatter plot',
|
||||
effectScatter: 'Ripple scatter plot',
|
||||
radar: 'Radar chart',
|
||||
tree: 'Tree',
|
||||
treemap: 'Treemap',
|
||||
boxplot: 'Boxplot',
|
||||
candlestick: 'Candlestick',
|
||||
k: 'K line chart',
|
||||
heatmap: 'Heat map',
|
||||
map: 'Map',
|
||||
parallel: 'Parallel coordinate map',
|
||||
lines: 'Line graph',
|
||||
graph: 'Relationship graph',
|
||||
sankey: 'Sankey diagram',
|
||||
funnel: 'Funnel chart',
|
||||
gauge: 'Gauge',
|
||||
pictorialBar: 'Pictorial bar',
|
||||
themeRiver: 'Theme River Map',
|
||||
sunburst: 'Sunburst',
|
||||
custom: 'Custom chart',
|
||||
chart: 'Chart'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'This is a chart about "{title}"',
|
||||
withoutTitle: 'This is a chart'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' with type {seriesType} named {seriesName}.',
|
||||
withoutName: ' with type {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. It consists of {seriesCount} series count.',
|
||||
withName: ' The {seriesId} series is a {seriesType} representing {seriesName}.',
|
||||
withoutName: ' The {seriesId} series is a {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'The data is as follows: ',
|
||||
partialData: 'The first {displayCnt} items are: ',
|
||||
withName: 'the data for {name} is {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
echarts.registerLocale('EN', localeObj);
|
||||
|
||||
});
|
171
echarts-master/i18n/langES-obj.js
Normal file
171
echarts-master/i18n/langES-obj.js
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio',
|
||||
'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'
|
||||
],
|
||||
monthAbbr: [
|
||||
'ene', 'feb', 'mar', 'abr', 'may', 'jun',
|
||||
'jul', 'ago', 'sep', 'oct', 'nov', 'dic'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'domingo', 'lunes', 'martes', 'miércoles', 'jueves', 'viernes', 'sábado'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'dom', 'lun', 'mar', 'mie', 'jue', 'vie', 'sáb'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Todas',
|
||||
inverse: 'Inversa'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Selección de cuadro',
|
||||
polygon: 'Selección de lazo',
|
||||
lineX: 'Seleccionar horizontalmente',
|
||||
lineY: 'Seleccionar verticalmente',
|
||||
keep: 'Mantener selección',
|
||||
clear: 'Despejar selecciones'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Ver datos',
|
||||
lang: ['Ver datos', 'Cerrar', 'Actualizar']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoom',
|
||||
back: 'Restablecer zoom'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Cambiar a gráfico de líneas',
|
||||
bar: 'Cambiar a gráfico de barras',
|
||||
stack: 'Pila',
|
||||
tiled: 'Teja'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Restaurar'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Guardar como imagen',
|
||||
lang: ['Clic derecho para guardar imagen']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Gráfico circular',
|
||||
bar: 'Gráfico de barras',
|
||||
line: 'Gráfico de líneas',
|
||||
scatter: 'Diagrama de dispersión',
|
||||
effectScatter: 'Diagrama de dispersión de ondas',
|
||||
radar: 'Gráfico de radar',
|
||||
tree: 'Árbol',
|
||||
treemap: 'Mapa de árbol',
|
||||
boxplot: 'Diagrama de caja',
|
||||
candlestick: 'Gráfico de velas',
|
||||
k: 'Gráfico de líneas K',
|
||||
heatmap: 'Mapa de calor',
|
||||
map: 'Mapa',
|
||||
parallel: 'Mapa de coordenadas paralelas',
|
||||
lines: 'Gráfico de líneas',
|
||||
graph: 'Gráfico de relaciones',
|
||||
sankey: 'Diagrama de Sankey',
|
||||
funnel: 'Gráfico de embudo',
|
||||
gauge: 'Medidor',
|
||||
pictorialBar: 'Gráfico de barras pictóricas',
|
||||
themeRiver: 'Mapa de río temático',
|
||||
sunburst: 'Sunburst',
|
||||
custom: 'Gráfico personalizado',
|
||||
chart: 'Gráfico'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Este es un gráfico sobre “{title}”',
|
||||
withoutTitle: 'Este es un gráfico'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' con tipo {seriesType} llamado {seriesName}.',
|
||||
withoutName: ' con tipo {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. Consta de {seriesCount} series.',
|
||||
withName: ' La serie {seriesId} es un {seriesType} que representa {seriesName}.',
|
||||
withoutName: ' La serie {seriesId} es un {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Los datos son los siguientes: ',
|
||||
partialData: 'Los primeros {displayCnt} elementos son: ',
|
||||
withName: 'los datos para {name} son {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
167
echarts-master/i18n/langES.js
Normal file
167
echarts-master/i18n/langES.js
Normal file
@ -0,0 +1,167 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio',
|
||||
'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre'
|
||||
],
|
||||
monthAbbr: [
|
||||
'ene', 'feb', 'mar', 'abr', 'may', 'jun',
|
||||
'jul', 'ago', 'sep', 'oct', 'nov', 'dic'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'domingo', 'lunes', 'martes', 'miércoles', 'jueves', 'viernes', 'sábado'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'dom', 'lun', 'mar', 'mie', 'jue', 'vie', 'sáb'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Todas',
|
||||
inverse: 'Inversa'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Selección de cuadro',
|
||||
polygon: 'Selección de lazo',
|
||||
lineX: 'Seleccionar horizontalmente',
|
||||
lineY: 'Seleccionar verticalmente',
|
||||
keep: 'Mantener selección',
|
||||
clear: 'Despejar selecciones'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Ver datos',
|
||||
lang: ['Ver datos', 'Cerrar', 'Actualizar']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoom',
|
||||
back: 'Restablecer zoom'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Cambiar a gráfico de líneas',
|
||||
bar: 'Cambiar a gráfico de barras',
|
||||
stack: 'Pila',
|
||||
tiled: 'Teja'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Restaurar'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Guardar como imagen',
|
||||
lang: ['Clic derecho para guardar imagen']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Gráfico circular',
|
||||
bar: 'Gráfico de barras',
|
||||
line: 'Gráfico de líneas',
|
||||
scatter: 'Diagrama de dispersión',
|
||||
effectScatter: 'Diagrama de dispersión de ondas',
|
||||
radar: 'Gráfico de radar',
|
||||
tree: 'Árbol',
|
||||
treemap: 'Mapa de árbol',
|
||||
boxplot: 'Diagrama de caja',
|
||||
candlestick: 'Gráfico de velas',
|
||||
k: 'Gráfico de líneas K',
|
||||
heatmap: 'Mapa de calor',
|
||||
map: 'Mapa',
|
||||
parallel: 'Mapa de coordenadas paralelas',
|
||||
lines: 'Gráfico de líneas',
|
||||
graph: 'Gráfico de relaciones',
|
||||
sankey: 'Diagrama de Sankey',
|
||||
funnel: 'Gráfico de embudo',
|
||||
gauge: 'Medidor',
|
||||
pictorialBar: 'Gráfico de barras pictóricas',
|
||||
themeRiver: 'Mapa de río temático',
|
||||
sunburst: 'Sunburst',
|
||||
custom: 'Gráfico personalizado',
|
||||
chart: 'Gráfico'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Este es un gráfico sobre “{title}”',
|
||||
withoutTitle: 'Este es un gráfico'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' con tipo {seriesType} llamado {seriesName}.',
|
||||
withoutName: ' con tipo {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. Consta de {seriesCount} series.',
|
||||
withName: ' La serie {seriesId} es un {seriesType} que representa {seriesName}.',
|
||||
withoutName: ' La serie {seriesId} es un {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Los datos son los siguientes: ',
|
||||
partialData: 'Los primeros {displayCnt} elementos son: ',
|
||||
withName: 'los datos para {name} son {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
echarts.registerLocale('ES', localeObj);
|
||||
|
||||
});
|
175
echarts-master/i18n/langFA-obj.js
Normal file
175
echarts-master/i18n/langFA-obj.js
Normal file
@ -0,0 +1,175 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Persian.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'بهمن', 'اسفند', 'فروردین', 'اردیبهشت', 'خرداد', 'تیر',
|
||||
'مرداد', 'شهریور', 'مهر', 'آبان', 'آذر', 'دی'
|
||||
],
|
||||
monthAbbr: [
|
||||
'بهمن', 'اسفند', 'فروردین', 'اردیبهشت', 'خرداد', 'تیر',
|
||||
'مرداد', 'شهریور', 'مهر', 'آبان', 'آذر', 'دی'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'همه',
|
||||
inverse: 'معکوس'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'چهار ضلعی',
|
||||
polygon: 'چند ضلعی',
|
||||
lineX: 'افقی',
|
||||
lineY: 'عمودی',
|
||||
keep: 'قفل کردن',
|
||||
clear: 'پاک کردن'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'نمایش دادهها',
|
||||
lang: ['نمایش دادهها', 'خروج', 'بارگذاری مجدد']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'بزرگنمایی',
|
||||
back: 'خروج از بزرگنمایی'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'نمودار خطی',
|
||||
bar: 'نمودار میلهای',
|
||||
stack: 'پشته',
|
||||
tiled: 'کاشی'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'بازگردانی'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'ذخیره تصویر',
|
||||
lang: ['راست کلیک برای ذخیره تصویر']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'نمودار دایرهای',
|
||||
bar: 'نمودار میلهای',
|
||||
line: 'نمودار خطی',
|
||||
scatter: 'طرح پراکنده',
|
||||
effectScatter: 'طرح پراکنده موج دار',
|
||||
radar: 'نمودار راداری',
|
||||
tree: 'درخت',
|
||||
treemap: 'نقشه درختی',
|
||||
boxplot: 'طرح جعبه',
|
||||
candlestick: 'شمعی',
|
||||
k: 'نمودار خطی k',
|
||||
heatmap: 'نقشه گرمایی',
|
||||
map: 'نقشه',
|
||||
parallel: 'نقشه مختصات موازی',
|
||||
lines: 'گراف خطی',
|
||||
graph: 'گراف ارتباط',
|
||||
sankey: 'دیاگرام سنکی',
|
||||
funnel: 'نمودار قیفی',
|
||||
gauge: 'اندازه گیر',
|
||||
pictorialBar: 'نوار تصویری',
|
||||
themeRiver: 'نقشه رودخانه رنگی',
|
||||
sunburst: 'آفتاب زدگی',
|
||||
custom: 'نمودار سفارشی',
|
||||
chart: 'نمودار'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'نمودار مربوط به "{title}"',
|
||||
withoutTitle: 'این یک نمودار است'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: 'با نوع {seriesType} و نام {seriesName}.',
|
||||
withoutName: 'با نوع {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. تشکیل شده از {seriesCount} سری.',
|
||||
withName: '{seriesId} سری نوعی از {seriesType} به نام {seriesName} است.',
|
||||
withoutName: 'سری {seriesId} نوعی از {seriesType} است.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'دیتای نمونه: ',
|
||||
partialData: 'اولین عنصر از {displayCnt}:',
|
||||
withName: 'مقدار {name}, {value} است',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
171
echarts-master/i18n/langFA.js
Normal file
171
echarts-master/i18n/langFA.js
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Persian.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'بهمن', 'اسفند', 'فروردین', 'اردیبهشت', 'خرداد', 'تیر',
|
||||
'مرداد', 'شهریور', 'مهر', 'آبان', 'آذر', 'دی'
|
||||
],
|
||||
monthAbbr: [
|
||||
'بهمن', 'اسفند', 'فروردین', 'اردیبهشت', 'خرداد', 'تیر',
|
||||
'مرداد', 'شهریور', 'مهر', 'آبان', 'آذر', 'دی'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'یکشنبه', 'دوشنبه', 'سه شنبه', 'چهارشنبه', 'پنجشنبه', 'جمعه', 'شنبه'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'همه',
|
||||
inverse: 'معکوس'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'چهار ضلعی',
|
||||
polygon: 'چند ضلعی',
|
||||
lineX: 'افقی',
|
||||
lineY: 'عمودی',
|
||||
keep: 'قفل کردن',
|
||||
clear: 'پاک کردن'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'نمایش دادهها',
|
||||
lang: ['نمایش دادهها', 'خروج', 'بارگذاری مجدد']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'بزرگنمایی',
|
||||
back: 'خروج از بزرگنمایی'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'نمودار خطی',
|
||||
bar: 'نمودار میلهای',
|
||||
stack: 'پشته',
|
||||
tiled: 'کاشی'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'بازگردانی'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'ذخیره تصویر',
|
||||
lang: ['راست کلیک برای ذخیره تصویر']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'نمودار دایرهای',
|
||||
bar: 'نمودار میلهای',
|
||||
line: 'نمودار خطی',
|
||||
scatter: 'طرح پراکنده',
|
||||
effectScatter: 'طرح پراکنده موج دار',
|
||||
radar: 'نمودار راداری',
|
||||
tree: 'درخت',
|
||||
treemap: 'نقشه درختی',
|
||||
boxplot: 'طرح جعبه',
|
||||
candlestick: 'شمعی',
|
||||
k: 'نمودار خطی k',
|
||||
heatmap: 'نقشه گرمایی',
|
||||
map: 'نقشه',
|
||||
parallel: 'نقشه مختصات موازی',
|
||||
lines: 'گراف خطی',
|
||||
graph: 'گراف ارتباط',
|
||||
sankey: 'دیاگرام سنکی',
|
||||
funnel: 'نمودار قیفی',
|
||||
gauge: 'اندازه گیر',
|
||||
pictorialBar: 'نوار تصویری',
|
||||
themeRiver: 'نقشه رودخانه رنگی',
|
||||
sunburst: 'آفتاب زدگی',
|
||||
custom: 'نمودار سفارشی',
|
||||
chart: 'نمودار'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'نمودار مربوط به "{title}"',
|
||||
withoutTitle: 'این یک نمودار است'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: 'با نوع {seriesType} و نام {seriesName}.',
|
||||
withoutName: 'با نوع {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. تشکیل شده از {seriesCount} سری.',
|
||||
withName: '{seriesId} سری نوعی از {seriesType} به نام {seriesName} است.',
|
||||
withoutName: 'سری {seriesId} نوعی از {seriesType} است.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'دیتای نمونه: ',
|
||||
partialData: 'اولین عنصر از {displayCnt}:',
|
||||
withName: 'مقدار {name}, {value} است',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
echarts.registerLocale('FA', localeObj);
|
||||
|
||||
});
|
171
echarts-master/i18n/langFI-obj.js
Normal file
171
echarts-master/i18n/langFI-obj.js
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'tammikuuta', 'helmikuuta', 'maaliskuuta', 'huhtikuuta', 'toukokuuta', 'kesäkuuta',
|
||||
'heinäkuuta', 'elokuuta', 'syyskuuta', 'lokakuuta', 'marraskuuta', 'joulukuuta'
|
||||
],
|
||||
monthAbbr: [
|
||||
'tammik', 'helmik', 'maalisk', 'huhtik', 'toukok', 'kesäk',
|
||||
'heinäk', 'elok', 'syysk', 'lokak', 'marrask', 'jouluk'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'sunnuntaina', 'maanantaina', 'tiistaina', 'keskiviikkona', 'torstaina', 'perjantaina', 'lauantaina'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Kaikki',
|
||||
inverse: 'Käänteinen'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Laatikko valinta',
|
||||
polygon: 'Lasso valinta',
|
||||
lineX: 'Vaakataso valinta',
|
||||
lineY: 'Pysty valinta',
|
||||
keep: 'Pidä valinta',
|
||||
clear: 'Poista valinta'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Data näkymä',
|
||||
lang: ['Data näkymä', 'Sulje', 'Päivitä']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoomaa',
|
||||
back: 'Zoomin nollaus'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Vaihda Viivakaavioon',
|
||||
bar: 'Vaihda palkkikaavioon',
|
||||
stack: 'Pinoa',
|
||||
tiled: 'Erottele'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Palauta'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Tallenna kuvana',
|
||||
lang: ['Paina oikeaa hiirennappia tallentaaksesi kuva']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Ympyrädiagrammi',
|
||||
bar: 'Pylväsdiagrammi',
|
||||
line: 'Viivakaavio',
|
||||
scatter: 'Pisteplot',
|
||||
effectScatter: 'Ripple-pisteplot',
|
||||
radar: 'Sädekaavio',
|
||||
tree: 'Puu',
|
||||
treemap: 'Tilastoaluekartta',
|
||||
boxplot: 'Viivadiagrammi',
|
||||
candlestick: 'Kynttiläkaavio',
|
||||
k: 'K-linjakaavio',
|
||||
heatmap: 'Lämpökartta',
|
||||
map: 'Kartta',
|
||||
parallel: 'Rinnakkaiskoordinaattikartta',
|
||||
lines: 'Viivakuvaaja',
|
||||
graph: 'Suhdekuvaaja',
|
||||
sankey: 'Sankey-kaavio',
|
||||
funnel: 'Suppilokaavio',
|
||||
gauge: 'Mittari',
|
||||
pictorialBar: 'Kuvallinen pylväs',
|
||||
themeRiver: 'Teemajokikartta',
|
||||
sunburst: 'Auringonkehä',
|
||||
custom: 'Mukautettu kaavio',
|
||||
chart: 'Kaavio'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Tämä on kaavio “{title}”',
|
||||
withoutTitle: 'Tämä on kaavio'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' tyyppiä {seriesType} nimeltään {seriesName}.',
|
||||
withoutName: ' tyyppiä {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. Se koostuu {seriesCount} sarjasta.',
|
||||
withName: ' Sarja {seriesId} on {seriesType}, joka edustaa {seriesName}.',
|
||||
withoutName: ' Sarja {seriesId} on {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Tiedot ovat seuraavat: ',
|
||||
partialData: 'Ensimmäiset {displayCnt} kohtaa ovat: ',
|
||||
withName: 'tiedot nimelle {name} ovat {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
167
echarts-master/i18n/langFI.js
Normal file
167
echarts-master/i18n/langFI.js
Normal file
@ -0,0 +1,167 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'tammikuuta', 'helmikuuta', 'maaliskuuta', 'huhtikuuta', 'toukokuuta', 'kesäkuuta',
|
||||
'heinäkuuta', 'elokuuta', 'syyskuuta', 'lokakuuta', 'marraskuuta', 'joulukuuta'
|
||||
],
|
||||
monthAbbr: [
|
||||
'tammik', 'helmik', 'maalisk', 'huhtik', 'toukok', 'kesäk',
|
||||
'heinäk', 'elok', 'syysk', 'lokak', 'marrask', 'jouluk'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'sunnuntaina', 'maanantaina', 'tiistaina', 'keskiviikkona', 'torstaina', 'perjantaina', 'lauantaina'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'su', 'ma', 'ti', 'ke', 'to', 'pe', 'la'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Kaikki',
|
||||
inverse: 'Käänteinen'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Laatikko valinta',
|
||||
polygon: 'Lasso valinta',
|
||||
lineX: 'Vaakataso valinta',
|
||||
lineY: 'Pysty valinta',
|
||||
keep: 'Pidä valinta',
|
||||
clear: 'Poista valinta'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Data näkymä',
|
||||
lang: ['Data näkymä', 'Sulje', 'Päivitä']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoomaa',
|
||||
back: 'Zoomin nollaus'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Vaihda Viivakaavioon',
|
||||
bar: 'Vaihda palkkikaavioon',
|
||||
stack: 'Pinoa',
|
||||
tiled: 'Erottele'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Palauta'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Tallenna kuvana',
|
||||
lang: ['Paina oikeaa hiirennappia tallentaaksesi kuva']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Ympyrädiagrammi',
|
||||
bar: 'Pylväsdiagrammi',
|
||||
line: 'Viivakaavio',
|
||||
scatter: 'Pisteplot',
|
||||
effectScatter: 'Ripple-pisteplot',
|
||||
radar: 'Sädekaavio',
|
||||
tree: 'Puu',
|
||||
treemap: 'Tilastoaluekartta',
|
||||
boxplot: 'Viivadiagrammi',
|
||||
candlestick: 'Kynttiläkaavio',
|
||||
k: 'K-linjakaavio',
|
||||
heatmap: 'Lämpökartta',
|
||||
map: 'Kartta',
|
||||
parallel: 'Rinnakkaiskoordinaattikartta',
|
||||
lines: 'Viivakuvaaja',
|
||||
graph: 'Suhdekuvaaja',
|
||||
sankey: 'Sankey-kaavio',
|
||||
funnel: 'Suppilokaavio',
|
||||
gauge: 'Mittari',
|
||||
pictorialBar: 'Kuvallinen pylväs',
|
||||
themeRiver: 'Teemajokikartta',
|
||||
sunburst: 'Auringonkehä',
|
||||
custom: 'Mukautettu kaavio',
|
||||
chart: 'Kaavio'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Tämä on kaavio “{title}”',
|
||||
withoutTitle: 'Tämä on kaavio'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' tyyppiä {seriesType} nimeltään {seriesName}.',
|
||||
withoutName: ' tyyppiä {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. Se koostuu {seriesCount} sarjasta.',
|
||||
withName: ' Sarja {seriesId} on {seriesType}, joka edustaa {seriesName}.',
|
||||
withoutName: ' Sarja {seriesId} on {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Tiedot ovat seuraavat: ',
|
||||
partialData: 'Ensimmäiset {displayCnt} kohtaa ovat: ',
|
||||
withName: 'tiedot nimelle {name} ovat {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
echarts.registerLocale('FI', localeObj);
|
||||
|
||||
});
|
175
echarts-master/i18n/langFR-obj.js
Normal file
175
echarts-master/i18n/langFR-obj.js
Normal file
@ -0,0 +1,175 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Français.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin',
|
||||
'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Jan', 'Fév', 'Mars', 'Avr', 'Mai', 'Juin',
|
||||
'Juil', 'Août', 'Sept', 'Oct', 'Nov', 'Déc'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Tout',
|
||||
inverse: 'Inverse'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Sélection rectangulaire',
|
||||
polygon: 'Sélection au lasso',
|
||||
lineX: 'Sélectionner horizontalement',
|
||||
lineY: 'Sélectionner verticalement',
|
||||
keep: 'Garder la sélection',
|
||||
clear: 'Effacer la sélection'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Visualisation des données',
|
||||
lang: ['Visualisation des données', 'Fermer', 'Rafraîchir']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoom',
|
||||
back: 'Zoom Remise à zéro'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Changer pour Ligne',
|
||||
bar: 'Changer pour Histogramme',
|
||||
stack: 'Superposition',
|
||||
tiled: 'Tuile'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Restaurer'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Sauvegarder l\'image',
|
||||
lang: ['Clic droit pour sauvegarder l\'image']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Camembert',
|
||||
bar: 'Histogramme',
|
||||
line: 'Ligne',
|
||||
scatter: 'Nuage de points',
|
||||
effectScatter: 'Nuage de points stylisé',
|
||||
radar: 'Radar',
|
||||
tree: 'Arbre',
|
||||
treemap: 'Treemap',
|
||||
boxplot: 'Boîte à moustaches',
|
||||
candlestick: 'Chandelier',
|
||||
k: 'Linéaire K',
|
||||
heatmap: 'Carte de fréquentation',
|
||||
map: 'Carte',
|
||||
parallel: 'Données parallèles',
|
||||
lines: 'Lignes',
|
||||
graph: 'Graphe',
|
||||
sankey: 'Sankey',
|
||||
funnel: 'Entonnoir',
|
||||
gauge: 'Jauge',
|
||||
pictorialBar: 'Barres à images',
|
||||
themeRiver: 'Stream Graph',
|
||||
sunburst: 'Sunburst',
|
||||
custom: 'Graphique personnalisé',
|
||||
chart: 'Graphique'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Cette carte est intitulée "{title}"',
|
||||
withoutTitle: 'C\'est une carte'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' Avec le type de {seriesType} qui s\'appelle {seriesName}.',
|
||||
withoutName: ' Avec le type de {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: ' Elle comprend {seriesCount} séries.',
|
||||
withName: ' La série {seriesId} représente {seriesName} de {seriesType}.',
|
||||
withoutName: ' La série {seriesId} est un/une {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Les données sont: ',
|
||||
partialData: 'Les premiers {displayCnt} éléments sont : ',
|
||||
withName: 'Les données pour {name} sont {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
171
echarts-master/i18n/langFR.js
Normal file
171
echarts-master/i18n/langFR.js
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Français.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin',
|
||||
'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Jan', 'Fév', 'Mars', 'Avr', 'Mai', 'Juin',
|
||||
'Juil', 'Août', 'Sept', 'Oct', 'Nov', 'Déc'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Tout',
|
||||
inverse: 'Inverse'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Sélection rectangulaire',
|
||||
polygon: 'Sélection au lasso',
|
||||
lineX: 'Sélectionner horizontalement',
|
||||
lineY: 'Sélectionner verticalement',
|
||||
keep: 'Garder la sélection',
|
||||
clear: 'Effacer la sélection'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Visualisation des données',
|
||||
lang: ['Visualisation des données', 'Fermer', 'Rafraîchir']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoom',
|
||||
back: 'Zoom Remise à zéro'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Changer pour Ligne',
|
||||
bar: 'Changer pour Histogramme',
|
||||
stack: 'Superposition',
|
||||
tiled: 'Tuile'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Restaurer'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Sauvegarder l\'image',
|
||||
lang: ['Clic droit pour sauvegarder l\'image']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Camembert',
|
||||
bar: 'Histogramme',
|
||||
line: 'Ligne',
|
||||
scatter: 'Nuage de points',
|
||||
effectScatter: 'Nuage de points stylisé',
|
||||
radar: 'Radar',
|
||||
tree: 'Arbre',
|
||||
treemap: 'Treemap',
|
||||
boxplot: 'Boîte à moustaches',
|
||||
candlestick: 'Chandelier',
|
||||
k: 'Linéaire K',
|
||||
heatmap: 'Carte de fréquentation',
|
||||
map: 'Carte',
|
||||
parallel: 'Données parallèles',
|
||||
lines: 'Lignes',
|
||||
graph: 'Graphe',
|
||||
sankey: 'Sankey',
|
||||
funnel: 'Entonnoir',
|
||||
gauge: 'Jauge',
|
||||
pictorialBar: 'Barres à images',
|
||||
themeRiver: 'Stream Graph',
|
||||
sunburst: 'Sunburst',
|
||||
custom: 'Graphique personnalisé',
|
||||
chart: 'Graphique'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Cette carte est intitulée "{title}"',
|
||||
withoutTitle: 'C\'est une carte'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' Avec le type de {seriesType} qui s\'appelle {seriesName}.',
|
||||
withoutName: ' Avec le type de {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: ' Elle comprend {seriesCount} séries.',
|
||||
withName: ' La série {seriesId} représente {seriesName} de {seriesType}.',
|
||||
withoutName: ' La série {seriesId} est un/une {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Les données sont: ',
|
||||
partialData: 'Les premiers {displayCnt} éléments sont : ',
|
||||
withName: 'Les données pour {name} sont {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
echarts.registerLocale('FR', localeObj);
|
||||
|
||||
});
|
175
echarts-master/i18n/langHU-obj.js
Normal file
175
echarts-master/i18n/langHU-obj.js
Normal file
@ -0,0 +1,175 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Hungarian.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'Január', 'Február', 'Március', 'Április', 'Május', 'Június',
|
||||
'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún',
|
||||
'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'V', 'H', 'K', 'Sze', 'Csü', 'P', 'Szo'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Mind',
|
||||
inverse: 'Inverz'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Négyzet kijelölés',
|
||||
polygon: 'Lasszó kijelölés',
|
||||
lineX: 'Vízszintes kijelölés',
|
||||
lineY: 'Függőleges kijelölés',
|
||||
keep: 'Kijelölések megtartása',
|
||||
clear: 'Kijelölések törlése'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Adat nézet',
|
||||
lang: ['Adat nézet', 'Bezárás', 'Frissítés']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Nagyítás',
|
||||
back: 'Alapméret'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Váltás vonal diagramra',
|
||||
bar: 'Váltás oszlop diagramra',
|
||||
stack: 'Halmozás',
|
||||
tiled: 'Csempe'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Visszaállítás'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Mentés képként',
|
||||
lang: ['Kattints jobb egérgombbal a mentéshez képként']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Oszlopdiagram',
|
||||
bar: 'Sávdiagram',
|
||||
line: 'Vonaldiagram',
|
||||
scatter: 'Pontdiagram',
|
||||
effectScatter: 'Buborékdiagram',
|
||||
radar: 'Sugárdiagram',
|
||||
tree: 'Fa',
|
||||
treemap: 'Fatérkép',
|
||||
boxplot: 'Dobozdiagram',
|
||||
candlestick: 'Árfolyamdiagram',
|
||||
k: 'K vonaldiagram',
|
||||
heatmap: 'Hőtérkép',
|
||||
map: 'Térkép',
|
||||
parallel: 'Párhuzamos koordináta térkép',
|
||||
lines: 'Vonalgráf',
|
||||
graph: 'Kapcsolatgráf',
|
||||
sankey: 'Sankey-diagram',
|
||||
funnel: 'Vízesésdiagram',
|
||||
gauge: 'Mérőeszköz',
|
||||
pictorialBar: 'Képes sávdiagram',
|
||||
themeRiver: 'Folyó témájú térkép',
|
||||
sunburst: 'Napégés',
|
||||
custom: 'Egyedi diagram',
|
||||
chart: 'Diagram'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Ez egy diagram, amely neve "{title}"',
|
||||
withoutTitle: 'Ez egy diagram'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' típusa {seriesType} és elnevezése {seriesName}.',
|
||||
withoutName: ' típusa {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. Az adatsorok száma {seriesCount}.',
|
||||
withName: ' A {seriesId} számú adatsor típusa {seriesType} és neve {seriesName}.',
|
||||
withoutName: ' A {seriesId} számú adatsor típusa {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Az adatok a következők: ',
|
||||
partialData: 'Az első {displayCnt} elemek: ',
|
||||
withName: 'a {name} nevű adat értéke {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
171
echarts-master/i18n/langHU.js
Normal file
171
echarts-master/i18n/langHU.js
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Hungarian.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'Január', 'Február', 'Március', 'Április', 'Május', 'Június',
|
||||
'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún',
|
||||
'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'V', 'H', 'K', 'Sze', 'Csü', 'P', 'Szo'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Mind',
|
||||
inverse: 'Inverz'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Négyzet kijelölés',
|
||||
polygon: 'Lasszó kijelölés',
|
||||
lineX: 'Vízszintes kijelölés',
|
||||
lineY: 'Függőleges kijelölés',
|
||||
keep: 'Kijelölések megtartása',
|
||||
clear: 'Kijelölések törlése'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Adat nézet',
|
||||
lang: ['Adat nézet', 'Bezárás', 'Frissítés']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Nagyítás',
|
||||
back: 'Alapméret'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Váltás vonal diagramra',
|
||||
bar: 'Váltás oszlop diagramra',
|
||||
stack: 'Halmozás',
|
||||
tiled: 'Csempe'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Visszaállítás'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Mentés képként',
|
||||
lang: ['Kattints jobb egérgombbal a mentéshez képként']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Oszlopdiagram',
|
||||
bar: 'Sávdiagram',
|
||||
line: 'Vonaldiagram',
|
||||
scatter: 'Pontdiagram',
|
||||
effectScatter: 'Buborékdiagram',
|
||||
radar: 'Sugárdiagram',
|
||||
tree: 'Fa',
|
||||
treemap: 'Fatérkép',
|
||||
boxplot: 'Dobozdiagram',
|
||||
candlestick: 'Árfolyamdiagram',
|
||||
k: 'K vonaldiagram',
|
||||
heatmap: 'Hőtérkép',
|
||||
map: 'Térkép',
|
||||
parallel: 'Párhuzamos koordináta térkép',
|
||||
lines: 'Vonalgráf',
|
||||
graph: 'Kapcsolatgráf',
|
||||
sankey: 'Sankey-diagram',
|
||||
funnel: 'Vízesésdiagram',
|
||||
gauge: 'Mérőeszköz',
|
||||
pictorialBar: 'Képes sávdiagram',
|
||||
themeRiver: 'Folyó témájú térkép',
|
||||
sunburst: 'Napégés',
|
||||
custom: 'Egyedi diagram',
|
||||
chart: 'Diagram'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Ez egy diagram, amely neve "{title}"',
|
||||
withoutTitle: 'Ez egy diagram'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' típusa {seriesType} és elnevezése {seriesName}.',
|
||||
withoutName: ' típusa {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. Az adatsorok száma {seriesCount}.',
|
||||
withName: ' A {seriesId} számú adatsor típusa {seriesType} és neve {seriesName}.',
|
||||
withoutName: ' A {seriesId} számú adatsor típusa {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'Az adatok a következők: ',
|
||||
partialData: 'Az első {displayCnt} elemek: ',
|
||||
withName: 'a {name} nevű adat értéke {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
echarts.registerLocale('HU', localeObj);
|
||||
|
||||
});
|
175
echarts-master/i18n/langIT-obj.js
Normal file
175
echarts-master/i18n/langIT-obj.js
Normal file
@ -0,0 +1,175 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Italian.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno',
|
||||
'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu',
|
||||
'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Tutti',
|
||||
inverse: 'Inverso'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Selezione rettangolare',
|
||||
polygon: 'Selezione lazo',
|
||||
lineX: 'Selezione orizzontale',
|
||||
lineY: 'Selezione verticale',
|
||||
keep: 'Mantieni selezione',
|
||||
clear: 'Rimuovi selezione'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Visualizzazione dati',
|
||||
lang: ['Visualizzazione dati', 'Chiudi', 'Aggiorna']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoom',
|
||||
back: 'Resetta zoom'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Passa al grafico a linee',
|
||||
bar: 'Passa al grafico a barre',
|
||||
stack: 'Pila',
|
||||
tiled: 'Piastrella'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Ripristina'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Salva come immagine',
|
||||
lang: ['Tasto destro per salvare l\'immagine']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Grafico a torta',
|
||||
bar: 'Grafico a barre',
|
||||
line: 'Grafico a linee',
|
||||
scatter: 'Grafico a dispersione',
|
||||
effectScatter: 'Ripple scatter plot',
|
||||
radar: 'Grafico radar',
|
||||
tree: 'Albero',
|
||||
treemap: 'Treemap',
|
||||
boxplot: 'Diagramma a scatola e baffi',
|
||||
candlestick: 'Candlestick',
|
||||
k: 'K line chart',
|
||||
heatmap: 'Mappa di calore',
|
||||
map: 'Mappa',
|
||||
parallel: 'Grafico a coordinate parallele',
|
||||
lines: 'Grafico a linee',
|
||||
graph: 'Diagramma delle relazioni',
|
||||
sankey: 'Diagramma di Sankey',
|
||||
funnel: 'Grafico a imbuto',
|
||||
gauge: 'Gauge',
|
||||
pictorialBar: 'Pictorial bar',
|
||||
themeRiver: 'Theme River Map',
|
||||
sunburst: 'Radiale',
|
||||
custom: 'Egyedi diagram',
|
||||
chart: 'Grafico'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Questo è un grafico su "{title}"',
|
||||
withoutTitle: 'Questo è un grafico'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' con il tipo {seriesType} denominato {seriesName}.',
|
||||
withoutName: ' con il tipo {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. È composto da {seriesCount} serie.',
|
||||
withName: ' La {seriesId} serie è un {seriesType} denominata {seriesName}.',
|
||||
withoutName: ' la {seriesId} serie è un {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'I dati sono come segue: ',
|
||||
partialData: 'I primi {displayCnt} elementi sono: ',
|
||||
withName: 'il dato per {name} è {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
171
echarts-master/i18n/langIT.js
Normal file
171
echarts-master/i18n/langIT.js
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Italian.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno',
|
||||
'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre'
|
||||
],
|
||||
monthAbbr: [
|
||||
'Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu',
|
||||
'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'Tutti',
|
||||
inverse: 'Inverso'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: 'Selezione rettangolare',
|
||||
polygon: 'Selezione lazo',
|
||||
lineX: 'Selezione orizzontale',
|
||||
lineY: 'Selezione verticale',
|
||||
keep: 'Mantieni selezione',
|
||||
clear: 'Rimuovi selezione'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'Visualizzazione dati',
|
||||
lang: ['Visualizzazione dati', 'Chiudi', 'Aggiorna']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'Zoom',
|
||||
back: 'Resetta zoom'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: 'Passa al grafico a linee',
|
||||
bar: 'Passa al grafico a barre',
|
||||
stack: 'Pila',
|
||||
tiled: 'Piastrella'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: 'Ripristina'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: 'Salva come immagine',
|
||||
lang: ['Tasto destro per salvare l\'immagine']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: 'Grafico a torta',
|
||||
bar: 'Grafico a barre',
|
||||
line: 'Grafico a linee',
|
||||
scatter: 'Grafico a dispersione',
|
||||
effectScatter: 'Ripple scatter plot',
|
||||
radar: 'Grafico radar',
|
||||
tree: 'Albero',
|
||||
treemap: 'Treemap',
|
||||
boxplot: 'Diagramma a scatola e baffi',
|
||||
candlestick: 'Candlestick',
|
||||
k: 'K line chart',
|
||||
heatmap: 'Mappa di calore',
|
||||
map: 'Mappa',
|
||||
parallel: 'Grafico a coordinate parallele',
|
||||
lines: 'Grafico a linee',
|
||||
graph: 'Diagramma delle relazioni',
|
||||
sankey: 'Diagramma di Sankey',
|
||||
funnel: 'Grafico a imbuto',
|
||||
gauge: 'Gauge',
|
||||
pictorialBar: 'Pictorial bar',
|
||||
themeRiver: 'Theme River Map',
|
||||
sunburst: 'Radiale',
|
||||
custom: 'Egyedi diagram',
|
||||
chart: 'Grafico'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'Questo è un grafico su "{title}"',
|
||||
withoutTitle: 'Questo è un grafico'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' con il tipo {seriesType} denominato {seriesName}.',
|
||||
withoutName: ' con il tipo {seriesType}.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. È composto da {seriesCount} serie.',
|
||||
withName: ' La {seriesId} serie è un {seriesType} denominata {seriesName}.',
|
||||
withoutName: ' la {seriesId} serie è un {seriesType}.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'I dati sono come segue: ',
|
||||
partialData: 'I primi {displayCnt} elementi sono: ',
|
||||
withName: 'il dato per {name} è {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
echarts.registerLocale('IT', localeObj);
|
||||
|
||||
});
|
175
echarts-master/i18n/langJA-obj.js
Normal file
175
echarts-master/i18n/langJA-obj.js
Normal file
@ -0,0 +1,175 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Japanese.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'一月', '二月', '三月', '四月', '五月', '六月',
|
||||
'七月', '八月', '九月', '十月', '十一月', '十二月'
|
||||
],
|
||||
monthAbbr: [
|
||||
'1月', '2月', '3月', '4月', '5月', '6月',
|
||||
'7月', '8月', '9月', '10月', '11月', '12月'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'日', '月', '火', '水', '木', '金', '土'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'すべてを選択',
|
||||
inverse: '選択範囲を反転'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: '矩形選択',
|
||||
polygon: 'なげなわ選択',
|
||||
lineX: '横方向に選択',
|
||||
lineY: '縦方向に選択',
|
||||
keep: '選択範囲を維持',
|
||||
clear: '選択範囲をクリア'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'データビュー',
|
||||
lang: ['データビュー', '閉じる', 'リロード']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'ズーム',
|
||||
back: 'リセット'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: '折れ線に切り替え',
|
||||
bar: '棒に切り替え',
|
||||
stack: '積み上げに切り替え',
|
||||
tiled: 'タイル状に切り替え'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: '復元'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: '図として保存',
|
||||
lang: ['右クリックして図を保存']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: '円グラフ',
|
||||
bar: '棒グラフ',
|
||||
line: '折れ線グラフ',
|
||||
scatter: '散布図',
|
||||
effectScatter: 'エフェクト散布図',
|
||||
radar: 'レーダーチャート',
|
||||
tree: '階層グラフ',
|
||||
treemap: 'ツリーマップ',
|
||||
boxplot: '箱ひげ図',
|
||||
candlestick: 'Kチャート',
|
||||
k: 'Kチャート',
|
||||
heatmap: 'ヒートマップ',
|
||||
map: '地図',
|
||||
parallel: 'パラレルチャート',
|
||||
lines: 'ラインチャート',
|
||||
graph: '相関図',
|
||||
sankey: 'サンキーダイアグラム',
|
||||
funnel: 'ファネルグラフ',
|
||||
gauge: 'ゲージ',
|
||||
pictorialBar: '絵入り棒グラフ',
|
||||
themeRiver: 'テーマリバー',
|
||||
sunburst: 'サンバースト',
|
||||
custom: 'カスタムチャート',
|
||||
chart: 'チャート'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'これは「{title}」に関するチャートです。',
|
||||
withoutTitle: 'これはチャートで、'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: 'チャートのタイプは{seriesType}で、{seriesName}を示しています。',
|
||||
withoutName: 'チャートのタイプは{seriesType}です。'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '{seriesCount}つのチャートシリーズによって構成されています。',
|
||||
withName: '{seriesId}番目のシリーズは{seriesName}を示した{seriesType}で、',
|
||||
withoutName: '{seriesId}番目のシリーズは{seriesType}で、',
|
||||
separator: {
|
||||
middle: ';',
|
||||
end: '。'
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'データは:',
|
||||
partialData: 'その内、{displayCnt}番目までは:',
|
||||
withName: '{name}のデータは{value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: '、',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
171
echarts-master/i18n/langJA.js
Normal file
171
echarts-master/i18n/langJA.js
Normal file
@ -0,0 +1,171 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports', 'echarts'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports, require('echarts/lib/echarts'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({}, root.echarts);
|
||||
}
|
||||
})(this, function(exports, echarts) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Japanese.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'一月', '二月', '三月', '四月', '五月', '六月',
|
||||
'七月', '八月', '九月', '十月', '十一月', '十二月'
|
||||
],
|
||||
monthAbbr: [
|
||||
'1月', '2月', '3月', '4月', '5月', '6月',
|
||||
'7月', '8月', '9月', '10月', '11月', '12月'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'日曜日', '月曜日', '火曜日', '水曜日', '木曜日', '金曜日', '土曜日'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'日', '月', '火', '水', '木', '金', '土'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: 'すべてを選択',
|
||||
inverse: '選択範囲を反転'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: '矩形選択',
|
||||
polygon: 'なげなわ選択',
|
||||
lineX: '横方向に選択',
|
||||
lineY: '縦方向に選択',
|
||||
keep: '選択範囲を維持',
|
||||
clear: '選択範囲をクリア'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: 'データビュー',
|
||||
lang: ['データビュー', '閉じる', 'リロード']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: 'ズーム',
|
||||
back: 'リセット'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: '折れ線に切り替え',
|
||||
bar: '棒に切り替え',
|
||||
stack: '積み上げに切り替え',
|
||||
tiled: 'タイル状に切り替え'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: '復元'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: '図として保存',
|
||||
lang: ['右クリックして図を保存']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: '円グラフ',
|
||||
bar: '棒グラフ',
|
||||
line: '折れ線グラフ',
|
||||
scatter: '散布図',
|
||||
effectScatter: 'エフェクト散布図',
|
||||
radar: 'レーダーチャート',
|
||||
tree: '階層グラフ',
|
||||
treemap: 'ツリーマップ',
|
||||
boxplot: '箱ひげ図',
|
||||
candlestick: 'Kチャート',
|
||||
k: 'Kチャート',
|
||||
heatmap: 'ヒートマップ',
|
||||
map: '地図',
|
||||
parallel: 'パラレルチャート',
|
||||
lines: 'ラインチャート',
|
||||
graph: '相関図',
|
||||
sankey: 'サンキーダイアグラム',
|
||||
funnel: 'ファネルグラフ',
|
||||
gauge: 'ゲージ',
|
||||
pictorialBar: '絵入り棒グラフ',
|
||||
themeRiver: 'テーマリバー',
|
||||
sunburst: 'サンバースト',
|
||||
custom: 'カスタムチャート',
|
||||
chart: 'チャート'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: 'これは「{title}」に関するチャートです。',
|
||||
withoutTitle: 'これはチャートで、'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: 'チャートのタイプは{seriesType}で、{seriesName}を示しています。',
|
||||
withoutName: 'チャートのタイプは{seriesType}です。'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '{seriesCount}つのチャートシリーズによって構成されています。',
|
||||
withName: '{seriesId}番目のシリーズは{seriesName}を示した{seriesType}で、',
|
||||
withoutName: '{seriesId}番目のシリーズは{seriesType}で、',
|
||||
separator: {
|
||||
middle: ';',
|
||||
end: '。'
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: 'データは:',
|
||||
partialData: 'その内、{displayCnt}番目までは:',
|
||||
withName: '{name}のデータは{value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: '、',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
echarts.registerLocale('JA', localeObj);
|
||||
|
||||
});
|
175
echarts-master/i18n/langKO-obj.js
Normal file
175
echarts-master/i18n/langKO-obj.js
Normal file
@ -0,0 +1,175 @@
|
||||
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you under the Apache License, Version 2.0 (the
|
||||
* "License"); you may not use this file except in compliance
|
||||
* with the License. You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing,
|
||||
* software distributed under the License is distributed on an
|
||||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
* KIND, either express or implied. See the License for the
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* AUTO-GENERATED FILE. DO NOT MODIFY.
|
||||
*/
|
||||
(function(root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(['exports'], factory);
|
||||
} else if (
|
||||
typeof exports === 'object' &&
|
||||
typeof exports.nodeName !== 'string'
|
||||
) {
|
||||
// CommonJS
|
||||
factory(exports);
|
||||
} else {
|
||||
// Browser globals
|
||||
factory({});
|
||||
}
|
||||
})(this, function(exports) {
|
||||
|
||||
|
||||
/**
|
||||
* Language: Korean.
|
||||
*/
|
||||
|
||||
var localeObj = {
|
||||
time: {
|
||||
month: [
|
||||
'1월', '2월', '3월', '4월', '5월', '6월',
|
||||
'7월', '8월', '9월', '10월', '11월', '12월'
|
||||
],
|
||||
monthAbbr: [
|
||||
'1월', '2월', '3월', '4월', '5월', '6월',
|
||||
'7월', '8월', '9월', '10월', '11월', '12월'
|
||||
],
|
||||
dayOfWeek: [
|
||||
'일요일', '월요일', '화요일', '수요일', '목요일', '금요일', '토요일'
|
||||
],
|
||||
dayOfWeekAbbr: [
|
||||
'일', '월', '화', '수', '목', '금', '토'
|
||||
]
|
||||
},
|
||||
legend: {
|
||||
selector: {
|
||||
all: '모두 선택',
|
||||
inverse: '선택 범위 반전'
|
||||
}
|
||||
},
|
||||
toolbox: {
|
||||
brush: {
|
||||
title: {
|
||||
rect: '사각형 선택',
|
||||
polygon: '올가미 선택',
|
||||
lineX: '수평 선택',
|
||||
lineY: '수직 선택',
|
||||
keep: '선택 유지',
|
||||
clear: '선택 지우기'
|
||||
}
|
||||
},
|
||||
dataView: {
|
||||
title: '날짜 보기',
|
||||
lang: ['날짜 보기', '닫기', '새로 고침']
|
||||
},
|
||||
dataZoom: {
|
||||
title: {
|
||||
zoom: '확대/축소',
|
||||
back: '확대/축소 초기화'
|
||||
}
|
||||
},
|
||||
magicType: {
|
||||
title: {
|
||||
line: '꺽은선 그래프로 변경',
|
||||
bar: '막대 그래프로 변경',
|
||||
stack: '스택',
|
||||
tiled: '타일'
|
||||
}
|
||||
},
|
||||
restore: {
|
||||
title: '복구'
|
||||
},
|
||||
saveAsImage: {
|
||||
title: '이미지로 저장',
|
||||
lang: ['이미지를 저장하려면 마우스 오른쪽 버튼을 클릭하세요.']
|
||||
}
|
||||
},
|
||||
series: {
|
||||
typeNames: {
|
||||
pie: '원 그래프',
|
||||
bar: '막대 그래프',
|
||||
line: '꺽은선 그래프',
|
||||
scatter: '산점도',
|
||||
effectScatter: '물결 효과 산점도',
|
||||
radar: '방사형 그래프',
|
||||
tree: '트리',
|
||||
treemap: '트리맵',
|
||||
boxplot: '상자 수염 그래프',
|
||||
candlestick: '캔들스틱 차트',
|
||||
k: 'K 라인 차트',
|
||||
heatmap: '히트 맵',
|
||||
map: '지도',
|
||||
parallel: '평행 좌표 맵',
|
||||
lines: '선',
|
||||
graph: '관계 그래프',
|
||||
sankey: '산키 다이어그램',
|
||||
funnel: '깔때기형 그래프',
|
||||
gauge: '계기',
|
||||
pictorialBar: '픽토그램 차트',
|
||||
themeRiver: '스트림 그래프',
|
||||
sunburst: '선버스트 차트',
|
||||
custom: '맞춤 차트',
|
||||
chart: '차트'
|
||||
}
|
||||
},
|
||||
aria: {
|
||||
general: {
|
||||
withTitle: '"{title}"에 대한 차트입니다.',
|
||||
withoutTitle: '차트입니다.'
|
||||
},
|
||||
series: {
|
||||
single: {
|
||||
prefix: '',
|
||||
withName: ' 차트 유형은 {seriesType}이며 {seriesName}을 표시합니다.',
|
||||
withoutName: ' 차트 유형은 {seriesType}입니다.'
|
||||
},
|
||||
multiple: {
|
||||
prefix: '. {seriesCount} 하나의 차트 시리즈로 구성됩니다.',
|
||||
withName: ' {seriesId}번째 시리즈는 {seriesName}을 나타내는 {seriesType} representing.',
|
||||
withoutName: ' {seriesId}번째 시리즈는 {seriesType}입니다.',
|
||||
separator: {
|
||||
middle: '',
|
||||
end: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
allData: '데이터: ',
|
||||
partialData: '첫번째 {displayCnt} 아이템: ',
|
||||
withName: '{name}의 데이터는 {value}',
|
||||
withoutName: '{value}',
|
||||
separator: {
|
||||
middle: ', ',
|
||||
end: '. '
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
for (var key in localeObj) {
|
||||
if (localeObj.hasOwnProperty(key)) {
|
||||
exports[key] = localeObj[key];
|
||||
}
|
||||
}
|
||||
|
||||
});
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user