mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00

Add option to set a chart crossing to 'min' as well as the existing 'max' option. The 'min' option isn't available in the Excel interface but can be enabled via VBA.
33 lines
878 B
Python
33 lines
878 B
Python
###############################################################################
|
|
#
|
|
# Tests for libxlsxwriter.
|
|
#
|
|
# Copyright 2014-2021, John McNamara, jmcnamara@cpan.org
|
|
#
|
|
|
|
import base_test_class
|
|
|
|
class TestCompareXLSXFiles(base_test_class.XLSXBaseTest):
|
|
"""
|
|
Test file created with libxlsxwriter against a file created by Excel.
|
|
|
|
"""
|
|
|
|
def test_chart_crossing01(self):
|
|
self.run_exe_test('test_chart_crossing01')
|
|
|
|
def test_chart_crossing02(self):
|
|
self.run_exe_test('test_chart_crossing02')
|
|
|
|
def test_chart_crossing03(self):
|
|
self.run_exe_test('test_chart_crossing03')
|
|
|
|
def test_chart_crossing04(self):
|
|
self.run_exe_test('test_chart_crossing04')
|
|
|
|
def test_chart_crossing05(self):
|
|
self.run_exe_test('test_chart_crossing05')
|
|
|
|
def test_chart_crossing06(self):
|
|
self.run_exe_test('test_chart_crossing06')
|