Nutrition Facts
Bleu Cheese Dressing
Typical Values Per 100g
Serving (77g)
%*(77g)
Energy 2445.74kj 1883.22kj
584.55kcal 450.1kcal
Total Fat 62.34 grams 48 grams
Saturated Fat 7.95 grams 6.12 grams
Carbohydrate 4.16 grams 3.2 grams
Sugars 3.9 grams 3 grams
Fibre 0.39 grams 0.3 grams
Protein 3.9 grams 3 grams
Salt 2.53g 1.95g
* Reference intake of an average adult (5100kj/1222kcal)
Data not available

Example #1 - FDA Rounding Off

$('#test1').nutritionLabel({
	width : 380,
	showLegacyVersion : false,
	showUKVersion : true,
	showItemNameForUK : true,
	showDailySugars : true,
	valueServingWeightGrams : 77,

	dailyValueTotalFat : 70, //this should be 70 for the uk version
	dailyValueCarb : 260, //this should be 260 for the uk version
	dailyValueSugar : 90, //this should be 90 for the uk version

	textCalories : 'Energy',
	textTotalCarb : 'Carbohydrate',
	textFibers : 'Fibre',
	textSodium : 'Salt',

	calorieIntake : 1222,
	showServingUnitQuantity : false,
	showIngredients : false,
	itemName : 'Bleu Cheese Dressing',
	decimalPlacesForNutrition : 2,
	decimalPlacesForDailyValues : 2,
	allowFDARounding : false,

	valueCalories : 450.10,
	valueTotalFat : 48.0,
	valueSatFat : 6.12,
	valueSodium : 780,
	valueTotalCarb : 3.2,
	valueFibers : 0.3,
	valueSugars : 3.0,
	valueProteins : 3
});



Nutrition Facts
Bleu Cheese Dressing
Typical Values Per 100g
Serving (77g)
%*(77g)
Energy 2446kj 1883kj
585kcal 450kcal
Total Fat 62 grams 48 grams
Saturated Fat 7.9 grams 6.1 grams
Carbohydrate 4.2 grams 3.2 grams
Sugars 3.9 grams 3 grams
Fibre < 0.5 grams < 0.5 grams
Protein 3.9 grams 3 grams
Salt 2.5g 2g
* Reference intake of an average adult (5100kj/1222kcal)
Data not available

Example #2 - FDA Rounding On

$('#test2').nutritionLabel({
	width : 380,
	showLegacyVersion : false,
	showUKVersion : true,
	showItemNameForUK : true,
	showDailySugars : true,
	valueServingWeightGrams : 77,

	dailyValueTotalFat : 70, //this should be 70 for the uk version
	dailyValueCarb : 260, //this should be 260 for the uk version
	dailyValueSugar : 90, //this should be 90 for the uk version

	textCalories : 'Energy',
	textTotalCarb : 'Carbohydrate',
	textFibers : 'Fibre',
	textSodium : 'Salt',

	calorieIntake : 1222,
	showServingUnitQuantity : false,
	showIngredients : false,
	itemName : 'Bleu Cheese Dressing',
	decimalPlacesForNutrition : 2,
	decimalPlacesForDailyValues : 2,
	allowFDARounding : true,

	valueCalories : 450.10,
	valueTotalFat : 48.0,
	valueSatFat : 6.12,
	valueSodium : 780,
	valueTotalCarb : 3.2,
	valueFibers : 0.3,
	valueSugars : 3.0,
	valueProteins : 3
});