Is it possble to create this type of graph ?
jpg posted @newsgroup?
pls respond asap
Is it possble to create this type of graph
Hi,
yes, this can be accomplished by using a custom horiz. axis and using stack group property for bar Series. I've post a .tee and jpg example to the attachments newsgroup.
yes, this can be accomplished by using a custom horiz. axis and using stack group property for bar Series. I've post a .tee and jpg example to the attachments newsgroup.
Pep Jorge
http://support.steema.com
http://support.steema.com
Hi daryl,
here the code of the example :
The grouping can be assigned for staked bars.
here the code of the example :
Code: Select all
Private Sub Form_Load()
With TChart1
.Aspect.View3D = False
For i = 0 To 3
.AddSeries scBar
.Series(i).FillSampleValues (5)
.Series(i).asBar.MultiBar = mbStacked
.Series(i).Marks.Visible = False
Next i
.Series(2).asBar.StackGroup = 1
.Series(3).asBar.StackGroup = 1
.Series(0).asBar.OffsetPercent = 50
.Series(1).asBar.OffsetPercent = 50
.Series(2).asBar.OffsetPercent = -50
.Series(3).asBar.OffsetPercent = -50
.Axis.Bottom.StartPosition = 0
.Axis.Bottom.EndPosition = 50
X = .Axis.AddCustom(True)
.Axis.Custom(X).StartPosition = 50
.Axis.Custom(X).EndPosition = 100
.Series(2).HorizontalAxisCustom = X
.Series(3).HorizontalAxisCustom = X
End With
End Sub
Pep Jorge
http://support.steema.com
http://support.steema.com
thanks for the information ,it was really great help
i was able to split the bottom axis , but the datatable is not been splitted ...
posted jpg will show wat i meant with respect to data table ...
is there anyway to split the data table too .. or add data table below the splitted bottom axis ..
pls respond asap , as i need to integrate in my app
i was able to split the bottom axis , but the datatable is not been splitted ...
posted jpg will show wat i meant with respect to data table ...
is there anyway to split the data table too .. or add data table below the splitted bottom axis ..
pls respond asap , as i need to integrate in my app
Hi daryl,
the DataTable tool is not prepared to do this. The best way would be to use two DataTable tools, one with custom position (to be placed on the right of the Chart), iwth OtherSide to True. The problem is that you the tool cannot hide some of the Series (I've added this on our wish list to be considered for further releases).
I've posted the .tee and .jpg file at newsgroups of restulted Chart.
the DataTable tool is not prepared to do this. The best way would be to use two DataTable tools, one with custom position (to be placed on the right of the Chart), iwth OtherSide to True. The problem is that you the tool cannot hide some of the Series (I've added this on our wish list to be considered for further releases).
I've posted the .tee and .jpg file at newsgroups of restulted Chart.
Pep Jorge
http://support.steema.com
http://support.steema.com