Coder Social home page Coder Social logo

linegraph-tfm's Introduction

Lite, Reusable and customizable line charts for Transformice!
GitHub Workflow Status CodeFactor Grade All Contributors GitHub file size in bytes GitHub tag (latest SemVer) GitHub

Features

  • Reusable
  • Lightweight
  • Customizable
  • Real time!
  • Class based
  • Easy

What's new! ๐ŸŽ† ๐ŸŽ† ๐ŸŽ†

  • Now you can add multiple Series to the same graph. Check out the documentation for more information!

Usage

--insert the library code before the script
--then call LineChart.init()
LineChart.init()
--then call LineChart(id, x, y, w, h) to create a new chart
chart = LineChart(1, 200, 50, 400, 200)
--create a new series to insert into the created chart.
series1 = Series({1,2,3}, {1,2,3}, "series1")
--add it to the chart
chart:addSeries(series1)
--set the labels to display (optional)
chart:showLabels()
--display the chart
chart:show()
-- this should show a linear chart ...

Check the documentation for more

Demos

LineChart.init() --initialzing

x = range(-5, 5, 0.5)
y = map(x, function(x) return math.tan(x) end)

chart = LineChart(1, 200, 50, 400, 200) --instantiation
series1 = Series(x, y, "y = tan x", 0xFFCC00) -- creates a new series with yellowish-orange color
chart:addSeries(series1)
chart:setGraphColor(0xFFFFFF, 0xFFFFFF) --sets graph color to white
chart:show() --display the chart

graph2


LineChart.init() --initializing

x = range(-5, 5, 0.5)
y = map(x, function(x) return 2 * x * x end)

chart = LineChart(1, 200, 50, 400, 200) --instantiation
chart:addSeries(Series(x, y, "y = 2x^2", 0xCC89FF)) --adds a new series with color purple
chart:setGraphColor(0xFFFFFF, 0xFFFFFF) --sets graph color to white
chart:show() --display the chart


Real time Graphs!

LineChart.init()

chart = LineChart(1, 200, 50, 400, 200) --instantiation
series1 = Series({0}, {0}, "Real time", 0xDD32CC) --creates a new series
chart:setGraphColor(0xFFFFFF, 0xFFFFFF) --sets graph color to white
chart:addSeries(series1) --adds the new series

currX = 0
--the real time mageic is here!
function eventLoop(l, r)
	local x = range(currX, currX + 10, 0.1) --creates the x coordinates
	local y = map(x, function(x) return  math.sin(x) * x * x * math.tanh(x) end ) --maps x values to the specified function
	series1:setData(x, y) --set new data to the series
	chart:show() --displays it
	currX = currX + 0.5 --this cause x coordinate to move by 0.5 every 500ms
end

Multi-Series Graphs!

LineChart.init()

chart = LineChart(1, 200, 50, 400, 200) --creates the chart (container for the series)
chart:setGraphColor(0xFFFFFF, 0xFFFFFF) --sets graph color to white
xData = range(0, 20, 1)  --creates a list of numbers from 0 to 20

series1 = Series(xData, xData, "linear") --creates a linear series
series2 = Series(xData, map(xData, function(x) return math.cos(x) end), "y = cos x") --creates a series which maps 'y' values to the 'tan x' value
series3 = Series(xData, map(xData, function(x) return math.random(x) end), "random") --creates a series which maps 'y' values randomly to 'x'

--add all the series
chart:addSeries(series1)
chart:addSeries(series2)
chart:addSeries(series3)

chart:showLabels() --show the labels
chart:show() --show the plots!

Contributors โœจ

Thanks goes to these wonderful people (emoji key):

Seniru Pasan Indira
Seniru Pasan Indira

๐Ÿ’ป ๐Ÿ“– ๐ŸŽจ
Lautenschlager
Lautenschlager

๐Ÿ’ป

This project follows the all-contributors specification. Contributions of any kind welcome!

linegraph-tfm's People

Contributors

actions-user avatar allcontributors[bot] avatar always-be-closing[bot] avatar lautenschlager-id avatar seniru avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

linegraph-tfm's Issues

Support the CI to minify, build docs and push the changes to the repo

We need a action which defines support to minify, build docs and push the changes to the repo. *There's one currently - but not working as intended *

Make sure you have supported all the following actions in your workflow

  • It should minify the script (You can use npm run build)
  • It should create docs (You can use npm run make:docs)
  • It should push the above changes to the docs folder and linechart.min.lua file

Open for anyone who is interested

ADDITIONAL NOTES:

  • We are using github actions as the CI

HAPPY HACKTOBERFEST! ๐ŸŽ†

Weekly Digest (12 July, 2020 - 19 July, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (17 September, 2019 - 24 September, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #5 Added data series, by Seniru


COMMITS

Last week there were 11 commits.
๐Ÿ› ๏ธ Merge pull request #5 from Seniru/feature-series Added data series by Seniru
๐Ÿ› ๏ธ Update README.md Updated README with the latest examples and code by Seniru
๐Ÿ› ๏ธ Merge branch 'master' into feature-series by Seniru
๐Ÿ› ๏ธ documentation.md updated from https://stackedit.io/ by Seniru
๐Ÿ› ๏ธ README.md updated from https://stackedit.io/ by Seniru
๐Ÿ› ๏ธ Removed LineChart#getData method by Seniru
๐Ÿ› ๏ธ Update documentation.md by Seniru
๐Ÿ› ๏ธ Update documentation.md by Seniru
๐Ÿ› ๏ธ Update linegraph.min.lua by Seniru
๐Ÿ› ๏ธ Added labels for series names by Seniru
๐Ÿ› ๏ธ Fixed bugs and improvements Bug: The minX and minY of the Series class doesn't update correctly when new data are set.
Improvements: Added refresh method to linechart to refresh it's data
by Seniru


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค Seniru


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there was 1 release.
๐Ÿš€ v0.2.0 [v0.2.0] Supported adding multiple series


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (3 November, 2019 - 10 November, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week 2 issues were created.
Of these, 2 issues have been closed and 0 issues are still open.

CLOSED ISSUES

โค๏ธ #17 noob, by Seniru
โค๏ธ #16 test: Checking the branch, by Seniru


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #16 test: Checking the branch, by Seniru


COMMITS

Last week there were 11 commits.
๐Ÿ› ๏ธ fix: typo in workflow by Seniru
๐Ÿ› ๏ธ misc: Blind Testing by Seniru
๐Ÿ› ๏ธ chore: Fix pushing to master from other branches test: Checking the branch by Seniru
๐Ÿ› ๏ธ misc: Small fix by Seniru
๐Ÿ› ๏ธ fix: run and uses cannot be used by Seniru
๐Ÿ› ๏ธ test: Checking the branch by Seniru
๐Ÿ› ๏ธ fix: Invalid workflow by Seniru
๐Ÿ› ๏ธ chore: Fixed pushing to master from other branches by Seniru
๐Ÿ› ๏ธ refactor: Removed extra whitespace by Seniru
๐Ÿ› ๏ธ refactor: Removed trailing whitespaces by Seniru
๐Ÿ› ๏ธ misc: Added codefactor badge by Seniru


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค Seniru


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (10 November, 2019 - 17 November, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week 2 issues were created.
Of these, 2 issues have been closed and 0 issues are still open.

CLOSED ISSUES

โค๏ธ #20 [ImgBot] Optimize images, by imgbot[bot]
โค๏ธ #19 Fix 3 code style issues, by codefactor-io[bot]


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were 6 commits.
๐Ÿ› ๏ธ docs: Deleted documentation.md Deleted the documentation.md file as the documentation is moved to docs folder and is managed with an automated system. by Seniru
๐Ÿ› ๏ธ docs: Added linechart logo for the README by Seniru
๐Ÿ› ๏ธ chore: Uploaded logos Uploaded linechart.png and linechart-white.png by Seniru
๐Ÿ› ๏ธ chore: Delete wrong logo by Seniru
๐Ÿ› ๏ธ misc: Uploaded timers logo by Seniru
๐Ÿ› ๏ธ refactor: Removed extra whitespace closes #19 by Seniru


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค Seniru


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (28 June, 2020 - 5 July, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (26 July, 2020 - 2 August, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (27 October, 2019 - 3 November, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were 2 commits.
๐Ÿ› ๏ธ docs: Changed size (repo) badge Replaced the repo size badge with minified code size badge by Seniru
๐Ÿ› ๏ธ docs: Changed size (repo) badge Replaced the repo size badge with minified code size badge by Seniru


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค Seniru


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (5 January, 2020 - 12 January, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (26 January, 2020 - 2 February, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there was 1 stargazer.
โญ slgero
You are the star! ๐ŸŒŸ


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Feature: Add grids to the graph

This issue is related with a new feature to the LineChart library.
As the title suggests we need to add grid like system to our charts

Below is an example of how it should look like

Example chart

Weekly Digest (17 November, 2019 - 24 November, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there was 1 stargazer.
โญ johnsonra
You are the star! ๐ŸŒŸ


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (9 February, 2020 - 16 February, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (8 December, 2019 - 15 December, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (5 July, 2020 - 12 July, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (29 September, 2019 - 6 October, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Feature: Add labels to data points

This issue is related with a new feature fir the library.
The following changes are planned to implement with this feature

  • Adding points (something like ๐Ÿ”ต) near the corresponding data point
  • Adding labels for data points which would become visible when clicking

Below is an example showing how should it look like

Example

Weekly Digest (24 May, 2020 - 31 May, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (19 January, 2020 - 26 January, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (31 May, 2020 - 7 June, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (6 October, 2019 - 13 October, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (17 May, 2020 - 24 May, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (22 September, 2019 - 29 September, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there was 1 commit.
๐Ÿ› ๏ธ documentation.md updated from https://stackedit.io/ by Seniru


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค Seniru


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (2 February, 2020 - 9 February, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (29 December, 2019 - 5 January, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there was 1 stargazer.
โญ Cvtx
You are the star! ๐ŸŒŸ


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (5 April, 2020 - 12 April, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:

ISSUES

This week, no issues have been created or closed.

PULL REQUESTS

This week, no pull requests has been proposed by the users.

CONTRIBUTORS

This week, no user has contributed to this repository.

STARGAZERS

This week, no user has starred this repository.

COMMITS

This week, there have been no commits.

RELEASES

This week, no releases were published.

That's all for this week, please watch ๐Ÿ‘€ and star โญ Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

Weekly Digest (7 June, 2020 - 14 June, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (19 April, 2020 - 26 April, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (1 December, 2019 - 8 December, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there was 1 commit.
๐Ÿ› ๏ธ misc: Converted badges into flat-squares by Seniru


CONTRIBUTORS

Last week there was 1 contributor.
๐Ÿ‘ค Seniru


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (10 May, 2020 - 17 May, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there was 1 stargazer.
โญ shunkakinoki
You are the star! ๐ŸŒŸ


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (16 February, 2020 - 23 February, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (13 October, 2019 - 20 October, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week 4 issues were created.
Of these, 3 issues have been closed and 1 issues are still open.

OPEN ISSUES

๐Ÿ’š #13 Support the CI to minify, build docs and push the changes to the repo, by Seniru

CLOSED ISSUES

โค๏ธ #12 v1.0, by Seniru
โค๏ธ #11 Feature: Add labels to data points, by Seniru
โค๏ธ #10 Feature: Add grids to the graph, by Seniru

NOISY ISSUE

๐Ÿ”ˆ #12 v1.0, by Seniru
It received 4 comments.


PULL REQUESTS

Last week, 1 pull request was created, updated or merged.

MERGED PULL REQUEST

Last week, 1 pull request was merged.
๐Ÿ’œ #12 v1.0, by Seniru


COMMITS

Last week there were 34 commits.
๐Ÿ› ๏ธ fix: Fixed script path by Seniru
๐Ÿ› ๏ธ chore: Automated push by Seniru
๐Ÿ› ๏ธ chore: Add automated push script by Seniru
๐Ÿ› ๏ธ Merge pull request #12 from Seniru/v1.0-alpha v1.0 by Seniru
๐Ÿ› ๏ธ Merge master into v1.0-alpha by always-be-closing[bot]
๐Ÿ› ๏ธ fix: Fixed trailing whitespace issue by Seniru
๐Ÿ› ๏ธ Merge master into v1.0-alpha by always-be-closing[bot]
๐Ÿ› ๏ธ chore: Removed pushing scripts by Seniru
๐Ÿ› ๏ธ refactor: Refactored the code by Seniru
๐Ÿ› ๏ธ feat!: Added data points and labels for data points Added data points - User now can activate data points with setShowDataPoints method Added labels, they can - Displayed when clicking a data point - Hide when clicked on self Closese #11 by Seniru
๐Ÿ› ๏ธ Merge master into v1.0-alpha by always-be-closing[bot]
๐Ÿ› ๏ธ ci: Added git push origin HEAD:master by Seniru
๐Ÿ› ๏ธ Merge master into v1.0-alpha by always-be-closing[bot]
๐Ÿ› ๏ธ docs: Add documentation for extra methods by Seniru
๐Ÿ› ๏ธ Merge master into v1.0-alpha by always-be-closing[bot]
๐Ÿ› ๏ธ ci: Add git config options by Seniru
๐Ÿ› ๏ธ Merge master into v1.0-alpha by always-be-closing[bot]
๐Ÿ› ๏ธ ci: Added github token by Seniru
๐Ÿ› ๏ธ Merge master into v1.0-alpha by always-be-closing[bot]
๐Ÿ› ๏ธ fix: Wrapped commit message with quotes by Seniru
๐Ÿ› ๏ธ Merge master into v1.0-alpha by always-be-closing[bot]
๐Ÿ› ๏ธ ci: Added the git add command by Seniru
๐Ÿ› ๏ธ Merge master into v1.0-alpha by always-be-closing[bot]
๐Ÿ› ๏ธ ci: Added git commit command by Seniru
๐Ÿ› ๏ธ ci: Allowed actions to run with github token by Seniru
๐Ÿ› ๏ธ [feat: Add a grid system This feature will add a grid to the chart. Such that 2 lines for x and y median and 4 grids in the mid 4 position

Closes #10](3af0655) by Seniru
๐Ÿ› ๏ธ refactor: Moved instantiation of some functions to top Moved instantiation of the functions getMin, getMax, map, range to top. This is to ensure that all the methods can be called in a code after minifying by Seniru
๐Ÿ› ๏ธ ci: Removed matrix and run with node 12 by Seniru
๐Ÿ› ๏ธ ci: Added make:docs script separately by Seniru
๐Ÿ› ๏ธ chore: Restructured file system and improvements for build scripts Restructured files and moved them into different directories. - Moved code into src directory - Moved build scripts inside tools directory - Moved documentation into docs directory by Seniru
๐Ÿ› ๏ธ Update build.yml by Seniru
๐Ÿ› ๏ธ Added automated doc script by Seniru
๐Ÿ› ๏ธ Create build.yml by Seniru
๐Ÿ› ๏ธ Created a buid script Created a build script with nodeJS and luamin to minify the code by Seniru


CONTRIBUTORS

Last week there were 2 contributors.
๐Ÿ‘ค Seniru
๐Ÿ‘ค always-be-closing[bot]


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were 2 releases.
๐Ÿš€ v1.0-beta Version 1.0 (Beta)
๐Ÿš€ v0.2.0.1 Minor release


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (3 May, 2020 - 10 May, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (26 April, 2020 - 3 May, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (24 November, 2019 - 1 December, 2019)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (2 August, 2020 - 9 August, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (21 June, 2020 - 28 June, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (12 January, 2020 - 19 January, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (23 February, 2020 - 1 March, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Weekly Digest (19 July, 2020 - 26 July, 2020)

Here's the Weekly Digest for Seniru/LineGraph-TFM:


ISSUES

Last week, no issues were created.


PULL REQUESTS

Last week, no pull requests were created, updated or merged.


COMMITS

Last week there were no commits.


CONTRIBUTORS

Last week there were no contributors.


STARGAZERS

Last week there were no stargazers.


RELEASES

Last week there were no releases.


That's all for last week, please ๐Ÿ‘€ Watch and โญ Star the repository Seniru/LineGraph-TFM to receive next weekly updates. ๐Ÿ˜ƒ

You can also view all Weekly Digests by clicking here.

Your Weekly Digest bot. ๐Ÿ“†

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.