or
puljeRounds.MasterGridViewTemplate.Columns.Add(new GridViewDateTimeColumn("Dato", "round_date") { FormatString = "{0:dd-MM-yyyy HH:mm}" }); |
Hello,
Is it possible in pie chart show the slice name and correspondent value?
I only can show or one or other.
Thank you.
LM
rounds.MasterGridViewTemplate.Columns.Clear(); |
rounds.MasterGridViewTemplate.Columns.Add(new GridViewDataColumn("Hjemme", "tName") { Width = 120,ReadOnly=true }); |
rounds.MasterGridViewTemplate.Columns.Add(new GridViewTextBoxColumn("Bane", "lane_HomeNum") { Width = 55, HeaderText = "Bane" }); |
rounds.MasterGridViewTemplate.Columns.Add(new GridViewDataColumn("Ude", "tName2") { Width = 120, ReadOnly = true }); |
rounds.MasterGridViewTemplate.Columns.Add(new GridViewTextBoxColumn("Bane Ude", "lane_awayNum") { Width = 55, HeaderText = "Bane", DataType = typeof(int) }); |
rounds.MasterGridViewTemplate.Columns.Add(new GridViewDataColumn("Anden dato", "round_id") { Width = 50, ReadOnly = true }); |
rounds.MasterGridViewTemplate.AutoGenerateColumns = false; |
var q = from v in db.match_dbs |
where v.round_id == roundID |
select new { v.match_id, tName = v.team_db.team_name,v.lane_HomeNum, v.lane_awayNum , tName2 = v.team_db1.team_name }; |
rounds.DataSource = q; |
Hi Guys,
I am looking for a way to export the RadPanelBar Control to an ActiveX object for use in a VB6 project. I know it’s possible, I just need a bit of help considering the RadPanelBar is a user control and not a simple object.
Going from ActiveX to .NET is fairly simple but it’s a bit of a pain going the other way.
Any help would be appreciated. I couldn't find much via google. :~<
Thanks,