-
Notifications
You must be signed in to change notification settings - Fork 605
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(#1882): add limitInPoit as default options
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { Area } from '../../src'; | ||
import { createDiv } from '../utils/dom'; | ||
|
||
describe('#1882', () => { | ||
const data = [ | ||
{ year: '1991', value: 3 }, | ||
{ year: '1992', value: 4 }, | ||
{ year: '1993', value: 3.5 }, | ||
{ year: '1994', value: 5 }, | ||
{ year: '1995', value: 4.9 }, | ||
{ year: '1996', value: 6 }, | ||
{ year: '1997', value: 7 }, | ||
{ year: '1998', value: 9 }, | ||
{ year: '1999', value: 13 }, | ||
]; | ||
it('limit in Plot', () => { | ||
const area = new Area(createDiv('limitInPlot'), { | ||
data, | ||
height: 500, | ||
width: 600, | ||
xField: 'year', | ||
yField: 'value', | ||
yAxis: { | ||
min: 10, | ||
}, | ||
}); | ||
|
||
area.render(); | ||
|
||
expect(area.chart.limitInPlot).toBe(true); | ||
expect(area.chart.middleGroup.get('clipShape')).toBeDefined(); | ||
// 大于一个 xAxis 的高度 | ||
expect(area.chart.middleGroup.get('clipShape').getBBox().minY > 5).toBe(true); | ||
|
||
area.destroy(); | ||
}); | ||
}); |
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