本文介绍了VB.Net Charting - 新型堆叠柱形图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我想在VB.Net中绘制一个堆积柱形图,其中一系列数据在同一列中一个堆叠在另一个上面。 让我解释一下:假设我有三个系列的数据,每个数据都有5个这样的值:I want to draw a 'stacked column chart' in VB.Net in which a series data is just stacked one above the other in the same column.Let me explain: Suppose I have three series of data each having 5 values like this:Series 1: (a1,b1,c1,d1,e1)Series 2: (a2,b2,c2,d2,e2)Series 3: (a3,b3,c3,d3,e3) At如果您绘制堆积柱形图,它将按以下方式绘制每列:At present if you draw the stacked column chart it will draw each column with in the following way:Stacked column 1: a1,a2,a3Stacked column 2: b1,b2,b3Stacked column 3: c1,c2,c3Stacked column 4: d1,d2,d3Stacked column 5: e1,e2,e3 但我想要的只是这样的三个堆叠列:But what I want is to have just three stacked columns like this:Stacked column 1: (a1,b1,c1,d1,e1)Stacked column 2: (a2,b2,c2,d2,e2)Stacked column 3: (a3,b3,c3,d3,e3) 这是每个系列点应该比前一个更高。 这似乎是一个简单的图表 - 但恕我直言现在不可能使用图表工具。 这不是'Grouped Stacked Column Chart'它只是将一个系列值叠加在另一个上面并生成列。 我需要非常紧急地制作这个图表。 请帮忙。 Rgds Renga IyengarThat is each series point should be plotted one above the previous one.This seems to be a simple chart - but IMHO it is not possible right now with the chart facility.This is not a 'Grouped Stacked Column Chart' which just stacks one series value above the other and produces the columns.I need to make this chart quite urgently.Kindly help.RgdsRenga Iyengar推荐答案 这篇关于VB.Net Charting - 新型堆叠柱形图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-23 22:40