-
-
Notifications
You must be signed in to change notification settings - Fork 6k
add logarithmic axis #2206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
add logarithmic axis #2206
Conversation
|
Is there any possibility of getting this (or something like it) merged? |
|
yes, but as you could see, almost every major contributor is busy with their job/home. So I'm sorry we have to delay everything. I'd hope move all general questions to stack overflow so we could focus on PRs and bug fix rather than spending time to check the inbox about different new issues. |
I understand the nature of open source, as I maintain several reasonably-popular projects myself, but at this point when PRs are going on 18 months, it really appears as if this project is abandoned. Thanks for the insight. I'll find another way to do what I need. |
|
@sbromberger I would admit it's very slow, but not abandoned. The author is not active for a very long time, so only me and 2 other folks maintaining this repo. As some PRs is introducing a big change, which requires a lot of time to sit down and review, and make sure it does not break anything. And time is what we all lack. Sorry about the fact. Some PRs just came up before Swift 4 and other refactor, and we also need the contributor to fix the conflicts, or we have to do it after we finish other stuff. But you can see if we got some time, we would do some work. You can check out here |
|
+1 for this |
|
is this available already? |
Demo : https://github.com/thierryH91200/Charts-log + https://github.com/thierryH91200/Charts
I added the possibility of having axes log/lin, lin/log or log/log
To implement it:
first step initializes the axis OX / OY axes
second step transform datas into log10
dataEntriesSet.append(ChartDataEntry(x: log10(x), y: log10(y))or
In option
possibility of modifying the grid:
possibility of modifying the grid with stick
possibility of modifying the grid with stick major
The rest is as usual