<div>
I have a progress bar which works with 2 percentage rating in progress bar this is created through bootstrap css and percentage value are bound from database
I would like to display 3 percentage ratings from the database in the progress bar. 3 displaying the corect length and different colours.
This is the code I have up to now!
<asp:Panel ID="MyTotalPanel" runat="server" CssClass="progress-bar progress-bar-custom2" role="progressbar" Style="width: 60%; text-align: right; padding-top: 5px;"></asp:Panel>
<div id="OffsetPercentage2" class="OffsetPercentage">
<span>
<asp:Label ID="lblTotalPercent1" runat="server" Text="Label"></asp:Label>%</span>
...
Go to the complete details ...