-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restore pre-5.2 logscale tic increment interpretation
- Loading branch information
sfeam
committed
Sep 23, 2017
1 parent
425ad08
commit fe9c29c
Showing
5 changed files
with
119 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
2017-09-23 Ethan A Merritt <[email protected]> | ||
|
||
* src/axis.c (gen_tics) docs/gnuplot.doc demo/nonlinear6.dem: | ||
Revise documentation of "set xtics" to include examples and description | ||
of logscale keyword. Restore pre-5.2 behaviour that for log-scaled axes | ||
the increment in "set xtics {start,} incr {,end}" is interpreted as a | ||
multiplicative factor rather than a constant interval. However this is | ||
only true if the "logscale" attribute is set for axis tics. | ||
New demo nonlinear6.dem exercises this feature and also shows the use of | ||
"set tics rangelimit" with log-scaled axes. | ||
Bug #1971 | ||
|
||
2017-09-21 Ethan A Merritt <[email protected]> | ||
|
||
* term/cairo.trm (cairotrm_reset): Still trying to get this right. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# | ||
# Logscale axis tic placement has always been problematic. | ||
# This demo exercises both automatic tic placement and | ||
# user-specified tic series. | ||
# | ||
set log y | ||
set log y2 | ||
set tics nomirror | ||
set border 11 | ||
set key center title "rangelimited tics" samplen -1 | ||
|
||
set xrange [1:15000] | ||
|
||
set ytics 10 logscale rangelimit | ||
set y2tics auto rangelimit | ||
|
||
plot sample [x=2:14000] x axes x1y1 title "set ytics 10", \ | ||
[x=2:14000] x axes x1y2 title "set y2tics auto" | ||
|
||
pause -1 "<cr> to continue" | ||
reset |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters