Jump to content
Software FX Community

vivek

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by vivek

  1. Can you please give an example for this also can you please tell me how could i take the child controls from the parent control and display it on browser I am using hguage.rendercontrol() method for displaying guage directly on the browser so i doubt it that i can add horizontal guage in the container.Is there any better meyhod for doing this thing.I mean converting guage into some object and then putting in container and then rendering the guage when i take out child elements one by one on the browser from the parent control thanks regards vivek
  2. hi i ahve written the code to generate guages dynamically using .net now i need to add another controls say heading for that guage in between the guage i tried many methods to add them but what i can see is the all the guages first and the controls whcih i added in the end is there any way by which i can control this behaviour and insert heading for that guage in between the guages as labels i give you the code to ahve a look If display.printrowvalue > 300 And display.printrowvalue < 400 Then collectionlabel.Text = display.collectionvalue linebreak.Text = "<br/>"titlelabel.Text = display.titlevalue Controls.Add(collectionlabel) Controls.Add(linebreak) Controls.Add(titlelabel) Controls.Add(linebreak) displayguage(display, maxmincombination(8), maxmincombination(9)) Controls.Add(linebreak) End Ifhere display is the object of the class which contains all the marker values for the guage which i am showing on browser, print row is one of its property display guage is the method with the help of whcih i am generating the guages maxmincombination is the array which contains maximum and minimum values for the guage now i also want to insert labels collection label and title label along with guages but i can only see the guages to be appearing and no labels after all the guages according to loop condition are displayed i can see only the last label values does it mean that guages does not allow the generation of other controls in between thanks in advance regards vivek
  3. hi I amtring to generate linear gauges by pure coding and set its values can anybody tell me how to set label values of its marker by code.I mean if I add a marker in horizontal guage I want to set its label values by code so that that values should appear on the browser i give u example of my code Public Sub displayguage(ByVal combinationclassobject As Combinationclass, ByVal minvalue As Integer, ByVal maxvalue As Integer) Dim Hguage As New ChartFX.WebForms.Gauge.HorizontalGauge Hguage.Width = 900 Hguage.MainIndicator.Value = 100 Hguage.Scales(0).Min = minvalue Hguage.Scales(0).Max = maxvalue Dim m1 As New ChartFX.WebForms.Gauge.Marker m1.Color = Drawing.Color.Red m1.VerticalPosition = IndicatorVerticalPosition.BehindTickmarks m1.Text = "SalesTyPharmacy" m1.Value = combinationclassobject.salesTyPharmacyvalue m1.Visible = TrueHguage.MainScale.Indicators.Add(m1) Dim m2 As New ChartFX.WebForms.Gauge.Marker m2.Color = Drawing.Color.Green m2.Text = "GrossProfitTyPharmacy"m2.Value = combinationclassobject.GrossprofitTyPharmacyvalue m2.Visible = Truem2.VerticalPosition = IndicatorVerticalPosition.BehindTickmarks Hguage.MainScale.Indicators.Add(m2) end sub
  4. Hi As per your advice i have installed chrtfx7 for .net Now i am using this code to display horizontal guage dynamically Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)Dim Hguage As ChartFX.WebForms.Gauge.HorizontalGauge Hguage.MainIndicator.Value = 100 Hguage.Scales(0).Min = 0 Hguage.Scales(0).Max = 700 Hguage.RenderControl() End Subbut still i am getting blank page as result do i need to do some setting thanks regards vivek
  5. Hi thanks for the reply Can i know that same would be possible I mean guages can be created dynamically using ChartFx guages for .net thanks Regards vivek
  6. Hi Is it possible that charts can be drilled down For example if we click on a particular portion of graph say damien then it takes us to the next page or next rdl or next graph showing the details of damien Thanks regards vivek
  7. Hi I am just wondering is there any method to control the values of X axis.I mean is there any way by which i can control that X axis would display a particular set of values only for a particular condition for example i want X axis to display minimum and maximum sales value for a particular customer who has number of records in the database and i want to see charts with seperate values of sales for all these kinds of customers Therefore if i have 3 customers then i want to see 3 charts(which of course is static and will be made in design time) with different values of customers thanks regards vivek
  8. Hi I am using charts in reporting services.I have made a dataset and trying to assign its elements in chart. i have experienced strange result. When i try to assign element of the dataset to chart whose value is numeric then result is visible but when i try to assign element of the dataset whose value comes as string to chart then i am getting error :An error occured during processing of Custom report item 'Chart2' with Chart extension.input string was not in correct format. I am giving an example for example my dataset has name shop and i have 2 elements in it customer name and sales when i assign sales value to chart then i am getting correct result but when i try to assign customer name to it i am getting error .Do i need to do any formatting for the string result Thanks Regards vivek
  9. Hi I am using charts in reporting services.I have made a dataset and trying to assign its elements in chart. i have experienced strange result. When i try to assign element of the dataset to chart whose value is numeric then result is visible but when i try to assign element of the dataset whose value comes as string to chart then i am getting error :An error occured during processing of Custom report item 'Chart2' with Chart extension.input string was not in correct format. I am giving an example for example my dataset has name shop and i have 2 elements in it customer name and sales when i assign sales value to chart then i am getting correct result but when i try to assign customer name to it i am getting error .Do i need to do any formatting for the string result Thanks Regards vivek
  10. Hi I might have a little difficult question and i am new to reporting services I am using chartFx for reprting services. i want to generate horizontal guages dynamically depending on the values of one of the fields of a table and for rest of the fields in that row , I want to set value of properties of guage as values Better i should expalin as example for example if i have a row say: printorder , Row, sales, cost,units then i want guages to appear when there is any print order and rest of the columns are the values in the scales of the guage. Is there any method of doing that. If yes then where i need to put the code and where to use to use that code to generate guages automatically(I mean is there any specific control in reporting services or area whose value i need to assign as this code) thanks in advance vivek
  11. Hi I might have a little difficult question and i am new to reporting services I am using chartFx for reprting services. i want to generate horizontal guages dynamically depending on the values of one of the fields of a table and for rest of the fields in that row , I want to set value of properties of guage as values Better i should expalin as example for example if i have a row say: printorder , Row, sales, cost,units then i want guages to appear when there is any print order and rest of the columns are the values in the scales of the guage. Is there any method of doing that. If yes then where i need to put the code and where to use to use that code to generate guages automatically(I mean is there any specific control in reporting services or area whose value i need to assign as this code) thanks in advance vivek
×
×
  • Create New...