You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
780 B

  1. /********************************************************************************
  2. * 版本信息输出
  3. *
  4. */
  5. var HQCHART_VERSION="1.1.14068";
  6. function PrintHQChartVersion()
  7. {
  8. var log=
  9. `*************************************************************************************************************
  10. *
  11. * HQChart Ver: ${HQCHART_VERSION}
  12. *
  13. * License: Apache License 2.0
  14. * Source: https://github.com/jones2000/HQChart
  15. *
  16. *************************************************************************************************************
  17. `
  18. console.log(log);
  19. }
  20. PrintHQChartVersion();
  21. export
  22. {
  23. HQCHART_VERSION
  24. }