or
<
configuration
>
<
system.web
>
<
compilation
debug
=
"true"
targetFramework
=
"4.0"
/>
</
system.web
>
<
connectionStrings
>
<
add
name
=
"COTSDev"
connectionString
=
"Data Source=csd2011;Initial Catalog=DB;Integrated Security=SSPI"
providerName
=
"System.Data.SqlClient"
/>
<
add
name
=
"COTSProd"
connectionString
=
"Data Source=arvixe.com;Initial Catalog=DB;Persist Security Info=True;User ID=CSDApp1;Password=PWD"
providerName
=
"System.Data.SqlClient"
/>
</
connectionStrings
>
<
system.serviceModel
>
<
serviceHostingEnvironment
aspNetCompatibilityEnabled
=
"true"
/>
<
services
>
<
service
name
=
"CSharp.SilverlightDemo.Web.CustomReportService"
behaviorConfiguration
=
"ReportServiceBehavior"
>
<
endpoint
address
=
""
binding
=
"basicHttpBinding"
contract
=
"Telerik.Reporting.Service.IReportService"
>
<
identity
>
<
dns
value
=
"localhost"
/>
</
identity
>
</
endpoint
>
<
endpoint
address
=
"resources"
binding
=
"webHttpBinding"
behaviorConfiguration
=
"WebBehavior"
contract
=
"Telerik.Reporting.Service.IResourceService"
/>
<
endpoint
address
=
"mex"
binding
=
"mexHttpBinding"
contract
=
"IMetadataExchange"
/>
</
service
>
</
services
>
<
behaviors
>
<
serviceBehaviors
>
<
behavior
name
=
"ReportServiceBehavior"
>
<
serviceMetadata
httpGetEnabled
=
"true"
/>
<
serviceDebug
includeExceptionDetailInFaults
=
"false"
/>
</
behavior
>
</
serviceBehaviors
>
<
endpointBehaviors
>
<
behavior
name
=
"WebBehavior"
>
<
webHttp
/>
</
behavior
>
</
endpointBehaviors
>
</
behaviors
>
</
system.serviceModel
>
</
configuration
>
Hello,
I am trying to show text value uniquely while overlapping on another text, by setting it's background color white.
m_PageTitle.Style.BackgroundColor = Color.White;
But even afer setting background color, both text values are displayed overlapping each other. Instead it should hide overlapping part of another text.
Please help.
Regards,
Manish
Browser: Chrome
EmployeeName = "Peter Jackson" , Date = Date 1, MinValue= "60%", MaxValue = "80%" , Average = "70%"
EmployeeName = "Peter Jackson" , Date = Date 2, MinValue= "65%", MaxValue = "90%" , Average = "80%"
EmployeeName = "Peter Jackson" , Date = Date 3, MinValue= "70%", MaxValue = "100%" , Average = "90%"
EmployeeName = "Denis Regan" , Date = Date 1, MinValue= "66%", MaxValue = "86%" , Average = "72%"
EmployeeName = "Denis Regan" , Date = Date 2, MinValue= "68%", MaxValue = "92%" , Average = "85%"
EmployeeName = "Denis Regan" , Date = Date 3, MinValue= "78%", MaxValue = "100%" , Average = "90%"