2014-12-14 5 views
1

x 축에서 min 및 max를 사용하는 방법을 이해하려고합니다. 나는 y 축에서 그것을 할 수 있지만, x 축에서 그것을하는 방법을 알아낼 수 없다. 나는 그것을 테스트하기 위해 예제와 함께 작업 중이 었으며 거기에서도 작동하지 않습니다. 어떤 도움이나 제안이라도 대단히 감사하겠습니다. 아래는 내가 사용하고있는 코드입니다. 는 Y 축이 분 호를 사용하고 있음을 알 수 있지만, X- 축 카테고리 용 Excel에서 지원되지 않는Python에서 xlsxwriter의 x 축 변경

import xlsxwriter 

workbook = xlsxwriter.Workbook('chart_line.xlsx') 
worksheet = workbook.add_worksheet() 
bold = workbook.add_format({'bold': 1}) 

# Add the worksheet data that the charts will refer to. 
headings = ['Number', 'Batch 1', 'Batch 2'] 
data = [ 
    [2, 3, 4, 5, 6, 7], 
    [10, 40, 50, 20, 10, 50], 
    [30, 60, 70, 50, 40, 30], 
] 

worksheet.write_row('A1', headings, bold) 
worksheet.write_column('A2', data[0]) 
worksheet.write_column('B2', data[1]) 
worksheet.write_column('C2', data[2]) 

# Create a new chart object. In this case an embedded chart. 
chart1 = workbook.add_chart({'type': 'line'}) 

# Configure the first series. 
chart1.add_series({ 
    'name':  '=Sheet1!$B$1', 
    'categories': '=Sheet1!$A$2:$A$7', 
    'values':  '=Sheet1!$B$2:$B$7', 
}) 

# Configure second series. Note use of alternative syntax to define ranges. 
chart1.add_series({ 
    'name':  ['Sheet1', 0, 2], 
    'categories': ['Sheet1', 1, 0, 6, 0], 
    'values':  ['Sheet1', 1, 2, 6, 2], 
}) 

# Add a chart title and some axis labels. 
chart1.set_title ({'name': 'Results of sample analysis'}) 
chart1.set_x_axis({'name': 'Test number', 
          'min': 3}) 
chart1.set_y_axis({'name': 'Sample length (mm)', 
       'min': 20}) 

# Set an Excel chart style. Colors with white outline and shadow. 
chart1.set_style(10) 

# Insert the chart into the worksheet (with an offset). 
worksheet.insert_chart('D2', chart1, {'x_offset': 25, 'y_offset': 10}) 


workbook.close() 

답변

0

최대 및 최소 값을하지 아니하는 선 차트의 x 축과 같은 축 .

Chart Value and Category Axes의 차이점에 대한 설명은 XlsxWriter 문서를 참조하십시오. 또한 차트 x-axis의 특성에는 해당 축 유형이 적용됩니다.

꺾은 선형 차트를 그리려면 값 축을 가지며 최대/최소값을 지원하는 scatter plot with lines으로 전환하면됩니다.