Skip to content

Releases: huww98/TimeChart

v1.0.0-beta.10

11 Jun 12:36
Compare
Choose a tag to compare
v1.0.0-beta.10 Pre-release
Pre-release
  • Fixed line render on MacOS
  • Update dependencies

v1.0.0-beta.9

07 Oct 17:07
Compare
Choose a tag to compare
v1.0.0-beta.9 Pre-release
Pre-release

What's Changed

  • Improved x-axis translation precision
  • Zoom with metaKey on macOS by @fast0490f
  • plugins_extra: selectZoom: zoom by selecting a rectangle with a pointer. It should work with the original chartZoom plugin. demo
  • New lineType option: TimeChart can now draw stepped lines, points, or WebGL native lines. And they can be dynamically switched. demo
  • tooltip: xFormatter option.
  • Major refactor. GPU memory usage is cut down to 1/8.

Breaking

  • WebGL1 support is dropped. Mainly affecting Safari <= 14
  • tooltip plugin gained its own options object. And the plugin export name is changed to TimeChartTooltipPlugin. See readme for more.

New Contributors

  • @fast0490f made their first contribution in #52

v1.0.0-beta.7

01 May 13:07
Compare
Choose a tag to compare
v1.0.0-beta.7 Pre-release
Pre-release

Fix: the first data point got dropped when it is the only data point in a series.

v1.0.0-beta.6

26 Feb 19:06
Compare
Choose a tag to compare
v1.0.0-beta.6 Pre-release
Pre-release

Support for adding/removing data from both ends

Breaking: Changing data array length by data[3] = {x, y} or data.length = ... is not supported now.

v1.0.0-beta.5

28 Jan 08:22
Compare
Choose a tag to compare
v1.0.0-beta.5 Pre-release
Pre-release
  • Introduce renderPadding* options #24
  • Use prototype to provide the default options

v1.0.0-beta.4

23 Oct 03:56
Compare
Choose a tag to compare
v1.0.0-beta.4 Pre-release
Pre-release
  • Fix import from webpack 4
  • Fix "this.xItem.value is undefined" in tooltip plugin

v1.0.0-beta.3

17 Oct 14:58
Compare
Choose a tag to compare
v1.0.0-beta.3 Pre-release
Pre-release
  • New tooltip. Thanks @debevv
  • Downgrade TS target version. Now we are compatible with more browsers.

v1.0.0-beta.2

15 Jun 13:52
Compare
Choose a tag to compare
v1.0.0-beta.2 Pre-release
Pre-release

Bug fixes:

  • fix import usage. tested with VS Code intellisense, tsc, webpack ts-loader

New features:

  • new plugin events. not enabled by default.

v1.0.0-beta.1

09 Jun 12:17
Compare
Choose a tag to compare
v1.0.0-beta.1 Pre-release
Pre-release

fix import error from webpack or similar

v1.0.0-beta.0

09 Jun 10:52
Compare
Choose a tag to compare
v1.0.0-beta.0 Pre-release
Pre-release

Plugin system 🎉

Almost all built-in functions are refactored to plugins. Users can enable each one independently. You can also write your own plugins.

Breaking Changes

Although I have done a major refactor, no breaking changes are expected. Please report if you find one.